From f3a55abe9400290efae74351b11fffa39d2c3b63 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 3 Sep 2003 08:01:10 +0000 Subject: [PATCH] Fix ScreenTextEntry allowing tab characters into text. --- 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 3f51ac699a..08ddbc83c4 100644 --- a/stepmania/src/ScreenTextEntry.cpp +++ b/stepmania/src/ScreenTextEntry.cpp @@ -156,7 +156,7 @@ void ScreenTextEntry::Input( const DeviceInput& DeviceI, const InputEventType ty } } - if( c != '\0' ) + if( c >= ' ' ) { m_sAnswer += c; UpdateText();