From d19db221518b8e3ebdb2add5df252f7f403c7473 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 27 Sep 2003 01:19:32 +0000 Subject: [PATCH] metric fix --- stepmania/src/MenuElements.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/MenuElements.cpp b/stepmania/src/MenuElements.cpp index 2d74e4c060..ca5295549a 100644 --- a/stepmania/src/MenuElements.cpp +++ b/stepmania/src/MenuElements.cpp @@ -67,7 +67,7 @@ void MenuElements::Load( CString sClassName, bool bEnableTimer, bool bLoadStyleI * If TIMER_SECONDS is -1, then the timer isn't shown at all. bTimerEnabled == 0 * is the same as !bTimerEnabled. Phase out bTimerEnabled and just set no timer * in the theme. */ - m_bTimerEnabled = (TIMER_SECONDS != -1); + m_bTimerEnabled = bEnableTimer && (TIMER_SECONDS != -1); if( m_bTimerEnabled ) {