From 0eaf05e8da8e88c6134ef629e27394ec49c29287 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 30 Jan 2006 02:29:50 +0000 Subject: [PATCH] fix caps --- stepmania/src/ScreenTextEntry.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenTextEntry.cpp b/stepmania/src/ScreenTextEntry.cpp index 9ed7bc7d60..5a6370eca8 100644 --- a/stepmania/src/ScreenTextEntry.cpp +++ b/stepmania/src/ScreenTextEntry.cpp @@ -154,9 +154,10 @@ void ScreenTextEntry::Input( const InputEventPlus &input ) bool bIsHoldingShift = INPUTFILTER->IsBeingPressed( DeviceInput(input.DeviceI.device, KEY_RSHIFT)) || INPUTFILTER->IsBeingPressed( DeviceInput(input.DeviceI.device, KEY_LSHIFT)); - char c = (char)toupper( input.DeviceI.ToChar() ); + char c = input.DeviceI.ToChar(); if( bIsHoldingShift ) { + c = (char)toupper( input.DeviceI.ToChar() ); switch( c ) { case '`': c='~'; break;