Allows spaces in the controls.conf; otherwise keys like Left Shift will not

work.
This commit is contained in:
Pieter Hulshoff 2017-02-04 17:31:27 +01:00
parent 1b87233ab5
commit 6563ae336e
2 changed files with 1 additions and 2 deletions

View File

@ -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);

View File

@ -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()