From b498da5683e00e1f6dbcda1d36521cdaee4de4bd Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 27 Nov 2008 02:55:52 +0000 Subject: [PATCH] don't make command name lowercase; remove 'don't force lowercase' hack --- stepmania/src/Command.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/stepmania/src/Command.cpp b/stepmania/src/Command.cpp index 60b3ee66ef..74ef49c8c4 100644 --- a/stepmania/src/Command.cpp +++ b/stepmania/src/Command.cpp @@ -12,12 +12,6 @@ RString Command::GetName() const return RString(); RString s = m_vsArgs[0]; Trim( s ); - - /* Transition hack: if a command begins with !, don't force it to lowercase. */ - if( s.Left(1) == "!" ) - s.erase( 0, 1 ); - else - s.MakeLower(); return s; }