engine: sdl: fix resizing event handling

This commit is contained in:
Alibek Omarov 2019-11-12 02:04:18 +03:00
parent 611ee64cd9
commit 0636dc45bd

View File

@ -569,11 +569,10 @@ static void SDLash_EventFilter( SDL_Event *event )
break; break;
case SDL_WINDOWEVENT_RESIZED: case SDL_WINDOWEVENT_RESIZED:
{ {
int w = VID_MIN_WIDTH, h = VID_MIN_HEIGHT;
if( vid_fullscreen->value ) if( vid_fullscreen->value )
break; break;
VID_SaveWindowSize( w, h ); VID_SaveWindowSize( event->window.data1, event->window.data2 );
SCR_VidInit(); // tell the client.dll that vid_mode has changed SCR_VidInit(); // tell the client.dll that vid_mode has changed
break; break;
} }