From 50633e639f3249d0b0e6fc32f6dd1d5f6e561298 Mon Sep 17 00:00:00 2001 From: Pieter Hulshoff Date: Mon, 2 Apr 2018 12:02:54 +0200 Subject: [PATCH] Removed extra call for menu key reading from controls.conf. --- RetroFE/Source/Control/UserInput.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/RetroFE/Source/Control/UserInput.cpp b/RetroFE/Source/Control/UserInput.cpp index fb52198..0907346 100644 --- a/RetroFE/Source/Control/UserInput.cpp +++ b/RetroFE/Source/Control/UserInput.cpp @@ -89,7 +89,6 @@ bool UserInput::initialize() retVal = MapKey("select", KeyCodeSelect) && retVal; retVal = MapKey("back", KeyCodeBack) && retVal; retVal = MapKey("quit", KeyCodeQuit) && retVal; - retVal = MapKey("menu", KeyCodeMenu) && retVal; return retVal; }