diff --git a/src/display.cxx b/src/display.cxx index 195aa3f..af9a94c 100644 --- a/src/display.cxx +++ b/src/display.cxx @@ -33,6 +33,11 @@ Display::readDisplaySize () this->width = displayMode.w; this->height = displayMode.h; + + if (this->width < this->getLogicWidth ()) + this->width = this->getLogicWidth (); + if (this->height < this->getLogicHeight ()) + this->height = this->getLogicHeight (); } Sint32