Fixed positive/negative axis display (show +/- and not 43/45)

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@4935 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2010-03-05 16:20:30 +00:00
parent e23c222a59
commit 4349a8961b

View File

@ -475,7 +475,7 @@ irr::core::stringw Input::getInputAsString(const Input::InputType type, const in
break;
case Input::IT_STICKMOTION:
//I18N: to appear in input configuration screen, for gamepad axes
s = StringUtils::insertValues( _("Axis %d %s"), id, (dir == Input::AD_NEGATIVE) ? '-' : '+');
s = StringUtils::insertValues( _("Axis %d %s"), id, (dir == Input::AD_NEGATIVE) ? L"-" : L"+");
break;
case Input::IT_STICKBUTTON:
//I18N: to appear in input configuration screen, for gamepad buttons