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