From c419f17bd8f0d170c9983d1d3dce58a6b80b5de2 Mon Sep 17 00:00:00 2001 From: Charles Lohr Date: Wed, 1 Dec 2004 21:36:26 +0000 Subject: [PATCH] Maybe it will work better if we say we're done when we tween off. --- stepmania/src/ScreenGameplay.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index ac1110ccb6..fd30af6a6a 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -779,8 +779,6 @@ ScreenGameplay::~ScreenGameplay() m_pSoundMusic->StopPlaying(); m_soundAssistTick.StopPlaying(); /* Stop any queued assist ticks. */ - - NSMAN->ReportSongOver(); } bool ScreenGameplay::IsLastSong() @@ -2469,6 +2467,9 @@ void ScreenGameplay::TweenOffScreen() m_textDebug.StopTweening(); m_textDebug.BeginTweening( 1/8.f ); m_textDebug.SetDiffuse( RageColor(1,1,1,0) ); + + + NSMAN->ReportSongOver(); } void ScreenGameplay::ShowOniGameOver( PlayerNumber pn )