[client] fixed autoResize behaviour

This commit is contained in:
Geoffrey McRae 2017-11-25 20:43:29 +11:00
parent f8d61da618
commit f6bc62647f

View File

@ -207,10 +207,11 @@ int renderThread(void * unused)
// update the window size and create the render texture
if (params.autoResize)
{
SDL_SetWindowSize(state.window, state.shm->width, state.shm->height);
if (params.center)
SDL_SetWindowPosition(state.window, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED);
if (params.center)
SDL_SetWindowPosition(state.window, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED);
}
if (state.hasBufferStorage)
{