[quake3-commits] r2252 - trunk/code/sdl
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Fri Jun 1 15:49:07 EDT 2012
Author: ztm
Date: 2012-06-01 15:49:07 -0400 (Fri, 01 Jun 2012)
New Revision: 2252
Modified:
trunk/code/sdl/sdl_input.c
Log:
Removed unnessicary "!!".
Modified: trunk/code/sdl/sdl_input.c
===================================================================
--- trunk/code/sdl/sdl_input.c 2012-05-20 21:22:11 UTC (rev 2251)
+++ trunk/code/sdl/sdl_input.c 2012-06-01 19:49:07 UTC (rev 2252)
@@ -975,7 +975,7 @@
IN_ProcessEvents( );
// If not DISCONNECTED (main menu) or ACTIVE (in game), we're loading
- loading = !!( clc.state != CA_DISCONNECTED && clc.state != CA_ACTIVE );
+ loading = ( clc.state != CA_DISCONNECTED && clc.state != CA_ACTIVE );
if( !Cvar_VariableIntegerValue("r_fullscreen") && ( Key_GetCatcher( ) & KEYCATCH_CONSOLE ) )
{
More information about the quake3-commits
mailing list