Skip to content

Commit

Permalink
Fix from Ensiform for event overflow during startup and loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Kangz committed Jan 19, 2015
1 parent 1143cde commit 909d5c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine/sys/sdl_input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1549,8 +1549,6 @@ void IN_Frame( void )
IN_JoyMove();
}

IN_ProcessEvents( dropInput );

// If not DISCONNECTED (main menu) or ACTIVE (in game), we're loading
loading = ( cls.state != CA_DISCONNECTED && cls.state != CA_ACTIVE );

Expand Down Expand Up @@ -1578,6 +1576,8 @@ void IN_Frame( void )
{
IN_ActivateMouse();
}

IN_ProcessEvents( dropInput );
}

void IN_DropInputsForFrame( void )
Expand Down

0 comments on commit 909d5c5

Please sign in to comment.