From 3cade20083dd7bef372adbc7d577a94fd5049c8a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 12 Jul 2005 21:16:15 +0000 Subject: [PATCH] NextCourseSong -> BeforeLoadingNextCourseSong, so it's clear that GetNextCourseSong is the next song, and not the next next song --- stepmania/src/ScreenGameplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index c41ebced98..b24b7ff277 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -2197,7 +2197,7 @@ void ScreenGameplay::HandleScreenMessage( const ScreenMessage SM ) int iPlaySongIndex = GAMESTATE->GetCourseSongIndex()+1; iPlaySongIndex %= m_apSongsQueue.size(); - MESSAGEMAN->Broadcast( "NextCourseSong" ); + MESSAGEMAN->Broadcast( "BeforeLoadingNextCourseSong" ); m_NextSong.PlayCommand( "Start" ); m_NextSong.Reset(); m_NextSong.StartTransitioning( SM_LoadNextSong );