This commit is contained in:
Glenn Maynard
2006-01-30 02:29:50 +00:00
parent 6b4f3e6c4f
commit 0eaf05e8da
+2 -1
View File
@@ -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;