Minor refactor for PKeyboardHandler WRT 'Alt' functionality.

This commit is contained in:
Stephen Anthony 2019-06-17 11:58:37 -02:30
parent 4ae491dd6c
commit 84d44273d3
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,6 @@
#include "Console.hxx"
#include "Settings.hxx"
#include "EventHandler.hxx"
#include "Event.hxx"
#include "Sound.hxx"
#include "StateManager.hxx"
#include "StellaKeys.hxx"
@ -45,7 +44,7 @@ static constexpr int MOD3 = KBDM_ALT;
PhysicalKeyboardHandler::PhysicalKeyboardHandler(OSystem& system, EventHandler& handler)
: myOSystem(system),
myHandler(handler)
#ifdef BSPF_UNIX // FIXME - this may no longer be relevant
#ifdef BSPF_UNIX
, myAltKeyCounter(0)
#endif
{

View File

@ -25,6 +25,7 @@ class OSystem;
class EventHandler;
#include "bspf.hxx"
#include "Event.hxx"
#include "EventHandlerConstants.hxx"
#include "KeyMap.hxx"