From 485d75cbbe008b67ee06d3fd8126eef8f95f74c2 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 9 Feb 2004 19:24:26 +0000 Subject: [PATCH] fix warning --- stepmania/src/ScreenExit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ) {