mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2025-12-13 10:18:53 +01:00
Fixed required/optional controls
This commit is contained in:
parent
cacbf1265e
commit
846e1228dd
@ -50,9 +50,9 @@ bool UserInput::Initialize()
|
||||
|
||||
retVal = MapKey("pageDown", KeyCodePageDown) && retVal;
|
||||
retVal = MapKey("pageUp", KeyCodePageUp) && retVal;
|
||||
retVal = MapKey("letterDown", KeyCodeLetterDown) && retVal;
|
||||
MapKey("letterDown", KeyCodeLetterDown);
|
||||
MapKey("letterUp", KeyCodeLetterUp);
|
||||
MapKey("select", KeyCodeSelect);
|
||||
retVal = MapKey("select", KeyCodeSelect) && retVal;
|
||||
retVal = MapKey("back", KeyCodeBack) && retVal;
|
||||
retVal = MapKey("quit", KeyCodeQuit) && retVal;
|
||||
// these features will need to be implemented at a later time
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user