Fix 0e62a398c7: Only center the window, when it is smaller than the screen. (#8581)

This commit is contained in:
frosch
2021-01-16 23:36:15 +01:00
committed by GitHub
parent c91a7b5e2e
commit 540fdfbf5a

View File

@@ -275,8 +275,8 @@ bool VideoDriver_SDL::CreateMainSurface(uint w, uint h, bool resize)
int x = SDL_WINDOWPOS_UNDEFINED, y = SDL_WINDOWPOS_UNDEFINED;
SDL_Rect r;
if (SDL_GetDisplayBounds(this->startup_display, &r) == 0) {
x = r.x + (r.w - w) / 2;
y = r.y + (r.h - h) / 4; // decent desktops have taskbars at the bottom
x = r.x + std::max(0, r.w - static_cast<int>(w)) / 2;
y = r.y + std::max(0, r.h - static_cast<int>(h)) / 4; // decent desktops have taskbars at the bottom
}
_sdl_window = SDL_CreateWindow(
caption,