Fix warnings.

This commit is contained in:
Steve Checkoway
2003-12-24 20:32:20 +00:00
parent 6c642539e8
commit 42c4f7415b
6 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -32,8 +32,8 @@ void ScreenExit::Update( float fDelta )
if( !DoQuit && m_ShutdownTimer.PeekDeltaTime() > 3 )
{
DoQuit = true;
CString warn = ssprintf("ScreenExit: %i sound%s failed to finish playing quickly: ",
PlayingSounds.size(), PlayingSounds.size()==1?"":"s" );
CString warn = ssprintf("ScreenExit: %lu sound%s failed to finish playing quickly: ",
PlayingSounds.size(), (PlayingSounds.size()==1?"":"s") );
for( set<RageSound *>::const_iterator i = PlayingSounds.begin();
i != PlayingSounds.end(); ++i )
{