mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 21:51:09 +00:00
Removed unnessicary "!!".
This commit is contained in:
parent
22ecd68cf2
commit
fb1f629bbc
1 changed files with 1 additions and 1 deletions
|
@ -975,7 +975,7 @@ void IN_Frame( void )
|
||||||
IN_ProcessEvents( );
|
IN_ProcessEvents( );
|
||||||
|
|
||||||
// If not DISCONNECTED (main menu) or ACTIVE (in game), we're loading
|
// 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 ) )
|
if( !Cvar_VariableIntegerValue("r_fullscreen") && ( Key_GetCatcher( ) & KEYCATCH_CONSOLE ) )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue