From 6563ae336ed670006f0bc71860710458a7d9a234 Mon Sep 17 00:00:00 2001 From: Pieter Hulshoff Date: Sat, 4 Feb 2017 17:31:27 +0100 Subject: [PATCH] Allows spaces in the controls.conf; otherwise keys like Left Shift will not work. --- RetroFE/Source/Control/UserInput.cpp | 1 - RetroFE/Source/Version.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/RetroFE/Source/Control/UserInput.cpp b/RetroFE/Source/Control/UserInput.cpp index fc61d28..8f803e8 100644 --- a/RetroFE/Source/Control/UserInput.cpp +++ b/RetroFE/Source/Control/UserInput.cpp @@ -121,7 +121,6 @@ bool UserInput::MapKey(std::string keyDescription, KeyCode_E key, bool required) return false; } - description = Utils::replace(description, " ", ""); description = Utils::replace(description, ".", ""); std::istringstream ss(description); diff --git a/RetroFE/Source/Version.cpp b/RetroFE/Source/Version.cpp index a06eab7..7c88e54 100644 --- a/RetroFE/Source/Version.cpp +++ b/RetroFE/Source/Version.cpp @@ -20,7 +20,7 @@ std::string retrofe_version_major = "0"; std::string retrofe_version_minor = "7"; -std::string retrofe_version_build = "20"; +std::string retrofe_version_build = "21b1"; std::string Version::getString()