style cleanup

This commit is contained in:
Glenn Maynard
2005-09-23 00:12:32 +00:00
parent 76e6382e7d
commit 2f3905325d
5 changed files with 23 additions and 21 deletions
+2 -2
View File
@@ -760,7 +760,7 @@ void ScreenEdit::PlayTicks()
fSecondsUntil /= m_soundMusic.GetPlaybackRate(); /* 2x music rate means the time until the tick is halved */
RageSoundParams p;
p.StartTime = GAMESTATE->m_LastBeatUpdate + (fSecondsUntil - (float)TICK_EARLY_SECONDS);
p.m_StartTime = GAMESTATE->m_LastBeatUpdate + (fSecondsUntil - (float)TICK_EARLY_SECONDS);
m_soundAssistTick.Play( &p );
}
}
@@ -2077,7 +2077,7 @@ void ScreenEdit::TransitionEditState( EditState em )
RageSoundParams p;
p.SetPlaybackRate( GAMESTATE->m_SongOptions.m_fMusicRate );
p.m_StartSecond = fStartSeconds;
p.AccurateSync = true;
p.m_bAccurateSync = true;
p.StopMode = RageSoundParams::M_CONTINUE;
m_soundMusic.Play( &p );
break;