Fix ScreenTextEntry allowing tab characters into text.

This commit is contained in:
Glenn Maynard
2003-09-03 08:01:10 +00:00
parent 3f0557139b
commit f3a55abe94
+1 -1
View File
@@ -156,7 +156,7 @@ void ScreenTextEntry::Input( const DeviceInput& DeviceI, const InputEventType ty
}
}
if( c != '\0' )
if( c >= ' ' )
{
m_sAnswer += c;
UpdateText();