diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp index 028a3e4a..d9c337e7 100644 --- a/src/gui/sdlmain.cpp +++ b/src/gui/sdlmain.cpp @@ -1961,6 +1961,10 @@ static void SetupWindowResolution(const char *val) sdl.desktop.window.width = w; sdl.desktop.window.height = h; return; + } else { + LOG_MSG("MAIN: dimensions %dx%d are out of display " + "bounds (%dx%d)", + w, h, bounds.w, bounds.h); } }