From da81d1aebdaa510e642f2779ec32541054f73836 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 10 Jul 2003 06:02:21 +0000 Subject: [PATCH] write full title to a DWI, not just the main title --- 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 e70c4e0c5b..c98342bab7 100644 --- a/stepmania/src/NotesWriterDWI.cpp +++ b/stepmania/src/NotesWriterDWI.cpp @@ -326,7 +326,7 @@ bool NotesWriterDWI::Write( CString sPath, const Song &out ) RageException::Throw( "Error opening song file '%s' for writing.", sPath.c_str() ); /* Write transliterations, if we have them, since DWI doesn't support UTF-8. */ - fprintf( fp, "#TITLE:%s;\n", out.GetTranslitMainTitle().c_str() ); + fprintf( fp, "#TITLE:%s;\n", out.GetFullTranslitTitle().c_str() ); fprintf( fp, "#ARTIST:%s;\n", out.GetTranslitArtist().c_str() ); ASSERT( out.m_BPMSegments[0].m_fStartBeat == 0 ); fprintf( fp, "#BPM:%.3f;\n", out.m_BPMSegments[0].m_fBPM );