Browse Source

engine: client: fix mouse cursor being hidden in background map

pull/2/head
Alibek Omarov 2 years ago
parent
commit
42740149ac
  1. 2
      engine/client/input.c

2
engine/client/input.c

@ -177,7 +177,7 @@ void IN_ToggleClientMouse( int newstate, int oldstate ) @@ -177,7 +177,7 @@ void IN_ToggleClientMouse( int newstate, int oldstate )
// since SetCursorType controls cursor visibility
// execute it first, and then check mouse grab state
if(( newstate == key_menu || newstate == key_console || newstate == key_message ) &&
( !CL_IsBackgroundMap() || CL_IsBackgroundDemo( )))
( CL_IsBackgroundMap() || CL_IsBackgroundDemo( )))
{
Platform_SetCursorType( dc_arrow );

Loading…
Cancel
Save