mirror of
https://github.com/UberGames/ioef.git
synced 2025-02-20 18:52:18 +00:00
Merge pull request #133 from Pan7/SDL_bool
SDL_FALSE/TRUE for SDL_SetWindowGrab
This commit is contained in:
commit
30c88442b2
1 changed files with 4 additions and 4 deletions
|
@ -327,7 +327,7 @@ static void IN_ActivateMouse( void )
|
|||
if( !mouseActive )
|
||||
{
|
||||
SDL_SetRelativeMouseMode( SDL_TRUE );
|
||||
SDL_SetWindowGrab( SDL_window, 1 );
|
||||
SDL_SetWindowGrab( SDL_window, SDL_TRUE );
|
||||
|
||||
IN_GobbleMotionEvents( );
|
||||
}
|
||||
|
@ -338,9 +338,9 @@ static void IN_ActivateMouse( void )
|
|||
if( in_nograb->modified || !mouseActive )
|
||||
{
|
||||
if( in_nograb->integer )
|
||||
SDL_SetWindowGrab( SDL_window, 0 );
|
||||
SDL_SetWindowGrab( SDL_window, SDL_FALSE );
|
||||
else
|
||||
SDL_SetWindowGrab( SDL_window, 1 );
|
||||
SDL_SetWindowGrab( SDL_window, SDL_TRUE );
|
||||
|
||||
in_nograb->modified = qfalse;
|
||||
}
|
||||
|
@ -371,7 +371,7 @@ static void IN_DeactivateMouse( void )
|
|||
{
|
||||
IN_GobbleMotionEvents( );
|
||||
|
||||
SDL_SetWindowGrab( SDL_window, 0 );
|
||||
SDL_SetWindowGrab( SDL_window, SDL_FALSE );
|
||||
SDL_SetRelativeMouseMode( SDL_FALSE );
|
||||
|
||||
// Don't warp the mouse unless the cursor is within the window
|
||||
|
|
Loading…
Reference in a new issue