From 846e1228ddfe893a166257b44adfa18e8260878c Mon Sep 17 00:00:00 2001 From: Don Honerbrink Date: Fri, 29 May 2015 14:00:34 +0000 Subject: [PATCH] Fixed required/optional controls --- RetroFE/Source/Control/UserInput.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RetroFE/Source/Control/UserInput.cpp b/RetroFE/Source/Control/UserInput.cpp index f5ea24a..a24e2d0 100644 --- a/RetroFE/Source/Control/UserInput.cpp +++ b/RetroFE/Source/Control/UserInput.cpp @@ -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