Added album tag support for libgme decoder

This commit is contained in:
Rasi 2010-07-23 23:07:36 +02:00 committed by Max Kellermann
parent e598922133
commit 31ab0b3df1

View File

@ -110,6 +110,8 @@ gme_tag_dup(const char *path_fs)
tag_add_item(tag, TAG_TITLE, ti->song);
if(ti->author != NULL)
tag_add_item(tag, TAG_ARTIST, ti->author);
if(ti->game != NULL)
tag_add_item(tag, TAG_ALBUM, ti->game);
if(ti->comment != NULL)
tag_add_item(tag, TAG_COMMENT, ti->comment);
if(ti->copyright != NULL)