From e3deb866549fa22c45d9327249dd1ee83c4ccdad Mon Sep 17 00:00:00 2001 From: Jared Roberts Date: Tue, 17 Sep 2002 05:14:31 +0000 Subject: [PATCH] dewarnify --- 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 7a05ea68f8..e436b78afa 100644 --- a/stepmania/src/ScreenTextEntry.cpp +++ b/stepmania/src/ScreenTextEntry.cpp @@ -99,7 +99,7 @@ void ScreenTextEntry::Input( const DeviceInput& DeviceI, const InputEventType ty if( INPUTFILTER->IsBeingPressed(DeviceInput(DEVICE_KEYBOARD, DIK_LSHIFT)) || INPUTFILTER->IsBeingPressed(DeviceInput(DEVICE_KEYBOARD, DIK_RSHIFT))) { - c = toupper(c); + c = (char)toupper(c); } if( c != '\0' )