From 9f458bd62b302a4a81fcbcd540f3bc60d2023ca3 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 8 Apr 2007 22:48:25 +0000 Subject: [PATCH] Only load the commands once. --- stepmania/src/ScreenGameplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index da9c48bc1c..de9a680ddd 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -2495,7 +2495,7 @@ void ScreenGameplay::HandleScreenMessage( const ScreenMessage SM ) FOREACH_EnabledPlayer(p) fMaxSurviveSeconds = max( fMaxSurviveSeconds, STATSMAN->m_CurStageStats.m_player[p].m_fAliveSeconds ); m_textSurviveTime.SetText( "TIME: " + SecondsToMMSSMsMs(fMaxSurviveSeconds) ); - LOAD_ALL_COMMANDS_AND_SET_XY_AND_ON_COMMAND( m_textSurviveTime ); + ON_COMMAND( m_textSurviveTime ); } if( GAMESTATE->IsCourseMode() )