FOREACH_ENUM2 -> FOREACH_ENUM

This commit is contained in:
Glenn Maynard
2006-10-07 08:56:58 +00:00
parent 30fd6d77b4
commit 617e8b5335
39 changed files with 64 additions and 65 deletions
+1 -1
View File
@@ -512,7 +512,7 @@ void UnlockManager::Load()
FOREACH_CONST( UnlockEntry, m_UnlockEntries, e )
{
RString str = ssprintf( "Unlock: %s; ", join("\n",e->m_cmd.m_vsArgs).c_str() );
FOREACH_ENUM2( UnlockRequirement, j )
FOREACH_ENUM( UnlockRequirement, j )
if( e->m_fRequirement[j] )
str += ssprintf( "%s = %f; ", UnlockRequirementToString(j).c_str(), e->m_fRequirement[j] );
if( e->m_bRequirePassHardSteps )