From 0f996ab2b12ec00ce43062ac172987a221a7553e Mon Sep 17 00:00:00 2001 From: Andrew Wong Date: Mon, 7 Jul 2003 11:02:23 +0000 Subject: [PATCH] updated some incorrect names in the preferences file adjusted rate timer increased while playing oni courses to reflect song play modifiers --- stepmania/src/ScoreDisplayOni.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScoreDisplayOni.cpp b/stepmania/src/ScoreDisplayOni.cpp index 3844315df5..b3aba95b5f 100644 --- a/stepmania/src/ScoreDisplayOni.cpp +++ b/stepmania/src/ScoreDisplayOni.cpp @@ -45,7 +45,8 @@ void ScoreDisplayOni::Update( float fDelta ) float fSecsIntoPlay; if( GAMESTATE->IsPlayerEnabled(m_PlayerNumber) ) - fSecsIntoPlay = GAMESTATE->m_CurStageStats.fAliveSeconds[m_PlayerNumber]; + // cure: multiplied by music rate to adjust timer + fSecsIntoPlay = GAMESTATE->m_CurStageStats.fAliveSeconds[m_PlayerNumber] * GAMESTATE->m_SongOptions.m_fMusicRate; else fSecsIntoPlay = 0;