diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-01-25 17:57:53 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-01-25 17:57:53 +0000 |
commit | 8ab0b9c277ed99d93c2d5b76ceeb30078ac85f11 (patch) | |
tree | 553101d21e188e08f115cb8ebd8fb502b3ac4e05 /code/client | |
parent | b07085058a2fd07241a9d3035de1442aa2a086ba (diff) | |
download | ioquake3-aero-8ab0b9c277ed99d93c2d5b76ceeb30078ac85f11.tar.gz ioquake3-aero-8ab0b9c277ed99d93c2d5b76ceeb30078ac85f11.zip |
* SDL build no longer requires a vid_restart when changing r_fullscreen
git-svn-id: svn://svn.icculus.org/quake3/trunk@526 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/cl_keys.c | 38 |
1 files changed, 16 insertions, 22 deletions
diff --git a/code/client/cl_keys.c b/code/client/cl_keys.c index a14b5ce..6f0dece 100644 --- a/code/client/cl_keys.c +++ b/code/client/cl_keys.c @@ -1043,28 +1043,22 @@ void CL_KeyEvent (int key, qboolean down, unsigned time) { } #ifndef _WIN32 - if (key == K_ENTER) - { - if (down) - { - if (keys[K_ALT].down) - { - Key_ClearStates(); - if (Cvar_VariableValue("r_fullscreen") == 0) - { - Com_Printf("Switching to fullscreen rendering\n"); - Cvar_Set("r_fullscreen", "1"); - } - else - { - Com_Printf("Switching to windowed rendering\n"); - Cvar_Set("r_fullscreen", "0"); - } - Cbuf_ExecuteText( EXEC_APPEND, "vid_restart\n"); - return; - } - } - } + if (key == K_ENTER) + { + if (down) + { + if (keys[K_ALT].down) + { + Key_ClearStates(); + Cvar_SetValue( "r_fullscreen", + !Cvar_VariableIntegerValue( "r_fullscreen" ) ); +#if !USE_SDL_VIDEO // This is handled in sdl_glimp.c/GLimp_EndFrame + Cbuf_ExecuteText( EXEC_APPEND, "vid_restart\n"); +#endif + return; + } + } + } #endif // console key is hardcoded, so the user can never unbind it |