From cf41a11770d1e9e7c4752a42342d31f5d2667f78 Mon Sep 17 00:00:00 2001 From: Steel Titanium Date: Mon, 11 Sep 2017 16:36:30 -0400 Subject: [PATCH] Fix for window being offcenter --- src/sdl/i_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/i_video.c b/src/sdl/i_video.c index 9cebe4945..e8d1876d9 100644 --- a/src/sdl/i_video.c +++ b/src/sdl/i_video.c @@ -194,7 +194,7 @@ static void SDLSetMode(INT32 width, INT32 height, SDL_bool fullscreen) } // Reposition window only in windowed mode SDL_SetWindowSize(window, width, height); - SDL_SetWindowPosition(window, SDL_WINDOWPOS_CENTERED_DISPLAY(1), SDL_WINDOWPOS_CENTERED_DISPLAY(1)); + SDL_SetWindowPosition(window, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED); } } else