m_fRate -> m_fSpeed

This commit is contained in:
Glenn Maynard
2006-11-30 07:32:38 +00:00
parent 458be5efa4
commit c241a4aaf8
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2309,7 +2309,7 @@ void ScreenEdit::TransitionEditState( EditState em )
LOG->Trace( "Starting playback at %f", fStartSeconds );
RageSoundParams p;
p.m_fRate = GAMESTATE->m_SongOptions.GetCurrent().m_fMusicRate;
p.m_fSpeed = GAMESTATE->m_SongOptions.GetCurrent().m_fMusicRate;
p.m_StartSecond = fStartSeconds;
p.m_bAccurateSync = true;
p.StopMode = RageSoundParams::M_CONTINUE;
+2 -2
View File
@@ -1325,7 +1325,7 @@ float ScreenGameplay::StartPlayingSong(float MinTimeToNotes, float MinTimeToMusi
RageSoundParams p;
p.m_bAccurateSync = true;
p.m_fRate = GAMESTATE->m_SongOptions.GetCurrent().m_fMusicRate;
p.m_fSpeed = GAMESTATE->m_SongOptions.GetCurrent().m_fMusicRate;
p.StopMode = RageSoundParams::M_CONTINUE;
p.m_StartSecond = fStartSecond;
@@ -1483,7 +1483,7 @@ void ScreenGameplay::BeginScreen()
RageSoundParams p;
p.m_bAccurateSync = true;
p.m_fRate = 1.0f; //Force 1.0 playback speed
p.m_fSpeed = 1.0f; //Force 1.0 playback speed
p.StopMode = RageSoundParams::M_CONTINUE;
p.m_StartSecond = startOffset;
m_pSoundMusic->Play( &p );