From efe328a92490efde02d9794e5f117bc9cc560b91 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 18 May 2004 06:35:37 +0000 Subject: [PATCH] fix output --- stepmania/src/RageSurface_Load_XPM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageSurface_Load_XPM.cpp b/stepmania/src/RageSurface_Load_XPM.cpp index 7f99948efc..265762c385 100644 --- a/stepmania/src/RageSurface_Load_XPM.cpp +++ b/stepmania/src/RageSurface_Load_XPM.cpp @@ -82,7 +82,7 @@ SDL_Surface *RageSurface_Load_XPM( char * const *xpm, CString &error ) const CString row = xpm[line++]; if( (int) row.size() != width*color_length ) { - error = ssprintf( "row %i is not expected length (%i != %i)", y, row.size(), width, color_length ); + error = ssprintf( "row %i is not expected length (%i != %i)", y, row.size(), width*color_length ); SDL_FreeSurface( img ); return NULL; }