From 570f17017a1fd4a6d3d16617ae443e0974990926 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 6 Apr 2007 18:16:47 +0000 Subject: [PATCH] fFadeOutSeconds --- stepmania/src/ScreenGameplay.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index f09ece9720..da9c48bc1c 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -2315,9 +2315,9 @@ void ScreenGameplay::HandleScreenMessage( const ScreenMessage SM ) float fFadeOutSeconds = MUSIC_FADE_OUT_SECONDS; RageSoundParams p = m_pSoundMusic->GetParams(); p.m_fFadeOutSeconds = fFadeOutSeconds; - p.m_LengthSeconds = GAMESTATE->m_fMusicSeconds + fFadeLengthSeconds; + p.m_LengthSeconds = GAMESTATE->m_fMusicSeconds + fFadeOutSeconds; m_pSoundMusic->SetParams(p); - SCREENMAN->PostMessageToTopScreen( SM_StartLoadingNextSong, fFadeLengthSeconds ); + SCREENMAN->PostMessageToTopScreen( SM_StartLoadingNextSong, fFadeOutSeconds ); return; } }