From 148603c95162468bf14a30d92593312b3e6570b7 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sat, 28 Feb 2015 18:10:14 -0600 Subject: [PATCH] Don't run vid_restart when "resized" to current size --- code/sdl/sdl_input.c | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/code/sdl/sdl_input.c b/code/sdl/sdl_input.c index 7d8a6d30..b4cd3bbe 100644 --- a/code/sdl/sdl_input.c +++ b/code/sdl/sdl_input.c @@ -849,11 +849,19 @@ static void IN_ProcessEvents( void ) { case SDL_WINDOWEVENT_RESIZED: { - char width[32], height[32]; - Com_sprintf( width, sizeof( width ), "%d", e.window.data1 ); - Com_sprintf( height, sizeof( height ), "%d", e.window.data2 ); - Cvar_Set( "r_customwidth", width ); - Cvar_Set( "r_customheight", height ); + int width, height; + + width = e.window.data1; + height = e.window.data2; + + // check if size actually changed + if( cls.glconfig.vidWidth == width && cls.glconfig.vidHeight == height ) + { + break; + } + + Cvar_SetValue( "r_customwidth", width ); + Cvar_SetValue( "r_customheight", height ); Cvar_Set( "r_mode", "-1" ); // Wait until user stops dragging for 1 second, so