From 7a06b9edbee81b611e72f80ef84870b7ec70f542 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 3 Aug 2005 00:47:33 +0000 Subject: [PATCH] InitCommand -> ScreenInitCommand --- stepmania/Themes/default/metrics.ini | 2 +- stepmania/src/Screen.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/Themes/default/metrics.ini b/stepmania/Themes/default/metrics.ini index 0fe988a37a..9db5d0da82 100644 --- a/stepmania/Themes/default/metrics.ini +++ b/stepmania/Themes/default/metrics.ini @@ -20,7 +20,7 @@ MinScoreToContinueCombo=GAMESTATE:GetPlayMode() == PLAY_MODE_ONI and TNS_PERFECT MinScoreToMaintainCombo=TNS_GREAT [Screen] -InitCommand= +ScreenInitCommand= ScreenOnCommand= AllowOperatorMenuButton=1 PrepareScreens= diff --git a/stepmania/src/Screen.cpp b/stepmania/src/Screen.cpp index ce117e139e..9a9f7f2f13 100644 --- a/stepmania/src/Screen.cpp +++ b/stepmania/src/Screen.cpp @@ -36,7 +36,7 @@ bool Screen::SortMessagesByDelayRemaining(const Screen::QueuedScreenMessage &m1, void Screen::Init() { - this->RunCommands( THEME->GetMetricA(m_sName, "InitCommand") ); + this->RunCommands( THEME->GetMetricA(m_sName, "ScreenInitCommand") ); vector asList; split( PREPARE_SCREENS, ",", asList );