|
From: <sag...@us...> - 2010-09-11 15:42:31
|
Revision: 707
http://modplug.svn.sourceforge.net/modplug/?rev=707&view=rev
Author: saga-games
Date: 2010-09-11 15:42:24 +0000 (Sat, 11 Sep 2010)
Log Message:
-----------
[Fix] MP3 Export / Tagging: The comments field was not formatted properly in the file.
Modified Paths:
--------------
trunk/OpenMPT/mptrack/tagging.cpp
Modified: trunk/OpenMPT/mptrack/tagging.cpp
===================================================================
--- trunk/OpenMPT/mptrack/tagging.cpp 2010-09-08 23:53:11 UTC (rev 706)
+++ trunk/OpenMPT/mptrack/tagging.cpp 2010-09-11 15:42:24 UTC (rev 707)
@@ -94,6 +94,11 @@
// For language IDs, see http://en.wikipedia.org/wiki/ISO-639-2
sFramecontent = "eng" + (ID3v2_TEXTENDING + sFramecontent);
}
+ if(!strcmp(cFrameID, "WXXX"))
+ {
+ // User-defined URL field (we have no description for the URL, so we leave it out)
+ sFramecontent = ID3v2_TEXTENDING + sFramecontent;
+ }
sFramecontent = ID3v2_CHARSET + sFramecontent;
TAGID3v2FRAME tFrame;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|