all unlock metrics in [UnlockManager]

This commit is contained in:
Chris Danford
2006-07-27 06:45:47 +00:00
parent 3bf067e47a
commit fd0f4f1566
2 changed files with 4 additions and 6 deletions
+2 -4
View File
@@ -48,7 +48,8 @@ CurrentModeX=0
CurrentModeY=0
CurrentModeZoom=1
[Unlocks]
[UnlockManager]
AutoLockChallengeSteps=0
UnlockNames=
# UnlockNames=1,2
# The song "Pledge" requires 500 AP.
@@ -5083,6 +5084,3 @@ ComboOnCommand=hidden,1
[Profile]
ShowCoinData=1
[UnlockManager]
AutoLockChallengeSteps=0
+2 -2
View File
@@ -18,8 +18,8 @@
UnlockManager* UNLOCKMAN = NULL; // global and accessable from anywhere in our program
#define UNLOCK_NAMES THEME->GetMetric ("Unlocks","UnlockNames")
#define UNLOCK(sLineName) THEME->GetMetric ("Unlocks",ssprintf("Unlock%s",sLineName.c_str()))
#define UNLOCK_NAMES THEME->GetMetric ("UnlockManager","UnlockNames")
#define UNLOCK(sLineName) THEME->GetMetric ("UnlockManager",ssprintf("Unlock%s",sLineName.c_str()))
ThemeMetric<bool> AUTO_LOCK_CHALLENGE_STEPS( "UnlockManager", "AutoLockChallengeSteps" );