From c1f4c33fb96c0207c55f2d8cb98ee54087c1ea85 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 19 Jun 2005 00:21:48 +0000 Subject: [PATCH] Fix format string. --- stepmania/src/RageSound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageSound.cpp b/stepmania/src/RageSound.cpp index c380ae2381..dc3cef0a64 100644 --- a/stepmania/src/RageSound.cpp +++ b/stepmania/src/RageSound.cpp @@ -796,7 +796,7 @@ bool RageSound::SetPositionFrames( int iFrames ) if( m_pSource == NULL ) { - LOG->Warn( "RageSound::SetPositionFrames(%f): sound not loaded", iFrames ); + LOG->Warn( "RageSound::SetPositionFrames(%d): sound not loaded", iFrames ); return false; }