Spig's NoteSkin cleanup

This commit is contained in:
Chris Danford
2002-09-10 01:43:37 +00:00
parent e3f82a706a
commit 66aa27df02
3 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -305,7 +305,7 @@ void Background::LoadFromSong( Song* pSong )
/* If we have only 2, only generate a single animation segment for for the
* whole song. Otherwise, if it's a movie., it'll loop every four bars; we
* want it to play continuously. */
const float fFirstBeat = m_BackgroundMode==MODE_MOVIE_BG ? 0 : pSong->m_fFirstBeat;
const float fFirstBeat = (m_BackgroundMode==MODE_MOVIE_BG) ? 0 : pSong->m_fFirstBeat;
const float fLastBeat = pSong->m_fLastBeat;
if( m_BackgroundAnimations.GetSize() == 2) {