Skip to content

Commit

Permalink
Debug|Cleanup: Alt key state is interesting only on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 20, 2013
1 parent 5ffc3f7 commit 5d37e1a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions doomsday/client/src/ui/dd_input.cpp
Expand Up @@ -711,12 +711,16 @@ void I_TrackInput(ddevent_t *ev)
if(ev->toggle.state == ETOG_DOWN)
{
altDown = true;
#ifdef WIN32
DEBUG_Message(("I_TrackInput: Alt down\n"));
#endif
}
else if(ev->toggle.state == ETOG_UP)
{
altDown = false;
#ifdef WIN32
DEBUG_Message(("I_TrackInput: Alt up\n"));
#endif
}
}
}
Expand Down

0 comments on commit 5d37e1a

Please sign in to comment.