From 0e392efbac290666260e2782af1fd4f5ce0d09f6 Mon Sep 17 00:00:00 2001 From: thilo Date: Wed, 26 Mar 2008 16:20:21 +0000 Subject: Make sure fullscreen does not work for in_nograb when manually Alt-Entering, too. git-svn-id: svn://svn.icculus.org/quake3/trunk@1282 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/sdl/sdl_glimp.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'code/sdl') diff --git a/code/sdl/sdl_glimp.c b/code/sdl/sdl_glimp.c index 3f5ba12..a6c0a30 100644 --- a/code/sdl/sdl_glimp.c +++ b/code/sdl/sdl_glimp.c @@ -662,6 +662,13 @@ void GLimp_EndFrame( void ) fullscreen = qtrue; else fullscreen = qfalse; + + if (r_fullscreen->integer && Cvar_VariableIntegerValue( "in_nograb" )) + { + ri.Printf( PRINT_ALL, "Fullscreen not allowed with in_nograb 1\n"); + ri.Cvar_Set( "r_fullscreen", "0" ); + r_fullscreen->modified = qfalse; + } // Is the state we want different from the current state? if( !!r_fullscreen->integer != fullscreen ) -- cgit v1.2.3