This commit is contained in:
Glenn Maynard
2004-04-04 04:11:43 +00:00
parent fb6e5d1a2a
commit 8e24cb1801
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -415,9 +415,8 @@ void ScreenEdit::PlayTicks()
float fSecondsUntil = fTickSecond - GAMESTATE->m_fMusicSeconds;
fSecondsUntil /= m_soundMusic.GetPlaybackRate(); /* 2x music rate means the time until the tick is halved */
RageTimer when = GAMESTATE->m_LastBeatUpdate + (fSecondsUntil - (float)TICK_EARLY_SECONDS);
RageSoundParams p;
p.StartTime = when;
p.StartTime = GAMESTATE->m_LastBeatUpdate + (fSecondsUntil - (float)TICK_EARLY_SECONDS);
m_soundAssistTick.Play( &p );
}
}