From 68420be1778bc443b25b425a64754fc030b0b5d0 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 19 Feb 2007 03:35:36 +0000 Subject: [PATCH] Wide character. --- stepmania/src/ScreenTextEntry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenTextEntry.cpp b/stepmania/src/ScreenTextEntry.cpp index 4caed504ce..3587e1c239 100644 --- a/stepmania/src/ScreenTextEntry.cpp +++ b/stepmania/src/ScreenTextEntry.cpp @@ -193,7 +193,7 @@ void ScreenTextEntry::Input( const InputEventPlus &input ) else if( input.type == IET_FIRST_PRESS ) { wchar_t c = INPUTMAN->DeviceInputToChar(input.DeviceI,true); - if( c >= ' ' ) + if( c >= L' ' ) { TryAppendToAnswer( WStringToRString(wstring()+c) );