mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2025-02-16 09:11:11 +00:00
Don't use mouse for player while console is open
Caused by the previous commit.
This commit is contained in:
parent
ed4bec3d46
commit
a9c7189b39
1 changed files with 4 additions and 1 deletions
|
@ -1200,7 +1200,10 @@ static void IN_ProcessEvents( void )
|
|||
|
||||
if( !xrel && !yrel )
|
||||
break;
|
||||
Com_QueueEvent( in_eventTime, SE_MOUSE, xrel, yrel, 0, NULL );
|
||||
|
||||
if ( Key_GetCatcher( ) & KEYCATCH_UI ) {
|
||||
Com_QueueEvent( in_eventTime, SE_MOUSE, xrel, yrel, 0, NULL );
|
||||
}
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue