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()) );