Fix: ' and " are not shown properly. You always type a " anyway.

This commit is contained in:
Charles Lohr
2004-09-06 03:22:35 +00:00
parent 1f77772dc8
commit 605e049a97
+2 -1
View File
@@ -140,12 +140,13 @@ void ScreenTextEntry::Input( const DeviceInput& DeviceI, const InputEventType ty
case ']': c='}'; break;
case '\\': c='|'; break;
case ';': c=':'; break;
case '\'': c='"'; break;
case ',': c='<'; break;
case '.': c='>'; break;
case '/': c='?'; break;
}
}
if ( !bHoldingShift && (c == '\"') )
c = '\'';
if( c >= ' ' )
{