diff --git a/stepmania/src/ScreenExit.cpp b/stepmania/src/ScreenExit.cpp index 3e9d66fdde..8c460f7dee 100644 --- a/stepmania/src/ScreenExit.cpp +++ b/stepmania/src/ScreenExit.cpp @@ -32,8 +32,8 @@ void ScreenExit::Update( float fDelta ) if( !DoQuit && m_ShutdownTimer.PeekDeltaTime() > 3 ) { DoQuit = true; - CString warn = ssprintf("ScreenExit: %lu sound%s failed to finish playing quickly: ", - PlayingSounds.size(), (PlayingSounds.size()==1?"":"s") ); + CString warn = ssprintf("ScreenExit: %i sound%s failed to finish playing quickly: ", + (int) PlayingSounds.size(), (PlayingSounds.size()==1?"":"s") ); for( set::const_iterator i = PlayingSounds.begin(); i != PlayingSounds.end(); ++i ) {