From dda7c95e78c775cd6571facaf075a6524ec74fde Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 6 Mar 2004 02:17:18 +0000 Subject: [PATCH] fix warnings --- stepmania/src/ScreenOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenOptions.cpp b/stepmania/src/ScreenOptions.cpp index 2c2170dd42..bf18685fa4 100644 --- a/stepmania/src/ScreenOptions.cpp +++ b/stepmania/src/ScreenOptions.cpp @@ -569,7 +569,7 @@ CString ScreenOptions::GetExplanationTitle( int iRow ) const } if( fTotalMinBpm == -1 || fTotalMaxBpm == -1 ) - sTitle += ssprintf( " (???)", fTotalMinBpm ); + sTitle += ssprintf( " (??" "?)" ); /* split so gcc doesn't think this is a trigraph */ else if( fTotalMinBpm == fTotalMaxBpm ) sTitle += ssprintf( " (%.0f)", fTotalMinBpm ); else