judgment name cleanup

This commit is contained in:
Chris Danford
2005-10-09 19:56:23 +00:00
parent b3925c7f14
commit e4a6fe3b80
2 changed files with 4 additions and 6 deletions
-2
View File
@@ -210,7 +210,6 @@ static void LuaTapNoteScores( lua_State* L )
FOREACH_TapNoteScore( i )
{
CString s = TapNoteScoreNames[i];
s.MakeUpper();
LUA->SetGlobal( "TNS_"+s, i );
}
}
@@ -242,7 +241,6 @@ static void LuaHoldNoteScores( lua_State* L )
FOREACH_HoldNoteScore( i )
{
CString s = HoldNoteScoreNames[i];
s.MakeUpper();
LUA->SetGlobal( "HNS_"+s, i );
}
}