From b6401f145b38b099b192a2cd14bd52331ce24bc4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 11 Mar 2005 23:09:36 +0000 Subject: [PATCH] fix error message --- stepmania/src/NotesWriterDWI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/NotesWriterDWI.cpp b/stepmania/src/NotesWriterDWI.cpp index 660ec16eca..8761ebde54 100644 --- a/stepmania/src/NotesWriterDWI.cpp +++ b/stepmania/src/NotesWriterDWI.cpp @@ -345,7 +345,7 @@ bool NotesWriterDWI::Write( CString sPath, const Song &out ) { RageFile f; if( !f.Open( sPath, RageFile::WRITE ) ) - RageException::Throw( "Error opening song file '%s' for writing.", f.GetError().c_str() ); + RageException::Throw( "Error opening song file \"%s\" for writing: \"%s\"", sPath.c_str(), f.GetError().c_str() ); /* Write transliterations, if we have them, since DWI doesn't support UTF-8. */ f.PutLine( ssprintf("#TITLE:%s;", out.GetFullTranslitTitle().c_str()) );