ignore window resize event on fullscreen

This commit is contained in:
Eugene Molotov 2017-09-10 14:31:51 +05:00
parent 5f743bdb22
commit e0a367451f
1 changed files with 6 additions and 0 deletions

View File

@ -1121,6 +1121,12 @@ static void IN_ProcessEvents( void )
width = e.window.data1;
height = e.window.data2;
// ignore this event on fullscreen
if( cls.glconfig.isFullscreen )
{
break;
}
// check if size actually changed
if( cls.glconfig.vidWidth == width && cls.glconfig.vidHeight == height )
{