From a2af656d19b493c3896b207934721d794245dcfc Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 24 Mar 2003 20:57:19 +0000 Subject: [PATCH] add log so it can be matched to skips --- stepmania/src/Background.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/Background.cpp b/stepmania/src/Background.cpp index 79ea6471f0..311f44f723 100644 --- a/stepmania/src/Background.cpp +++ b/stepmania/src/Background.cpp @@ -16,6 +16,7 @@ #include "RageBitmapTexture.h" #include "RageException.h" #include "RageTimer.h" +#include "RageLog.h" #include "GameState.h" #include "ThemeManager.h" #include "PrefsManager.h" @@ -357,7 +358,7 @@ void Background::Update( float fDeltaTime ) if( int(i) > m_iCurBGChange ) { -// LOG->Trace( "%d, %d, %f, %f\n", m_iCurBGSegment, i, m_aBGSegments[i].m_fStartBeat, GAMESTATE->m_fSongBeat ); + LOG->Trace( "new bga %d, %d, %f, %f", m_iCurBGChange, i, m_aBGChanges[i].m_fStartBeat, GAMESTATE->m_fSongBeat ); BGAnimation* pOld = GetCurrentBGA(); m_iCurBGChange = i; BGAnimation* pNew = GetCurrentBGA();