From 4349a8961bf08cf68e801c7c665190c9cdddf2d4 Mon Sep 17 00:00:00 2001 From: auria Date: Fri, 5 Mar 2010 16:20:30 +0000 Subject: [PATCH] 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 --- src/input/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/input.cpp b/src/input/input.cpp index 83c29af16..ec3ef89a5 100644 --- a/src/input/input.cpp +++ b/src/input/input.cpp @@ -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