VGM export: include song comments

also show song comments on mobile
This commit is contained in:
tildearrow 2024-08-23 17:46:09 -05:00
parent d0f3e0fa58
commit 99ae6a2b38
4 changed files with 18 additions and 8 deletions

View file

@ -2679,7 +2679,8 @@ SafeWriter* DivEngine::saveVGM(bool* sysToExport, bool loop, int version, bool p
w->writeWString(ws,false); // japanese author name
w->writeS(0); // date
w->writeWString(L"Furnace (chiptune tracker)",false); // ripper
w->writeS(0); // notes
ws=utf8To16(song.notes.c_str());
w->writeWString(ws,false); // notes
int gd3Len=w->tell()-gd3Off-12;