Commit 31ab0b3d authored by Rasi's avatar Rasi Committed by Max Kellermann

Added album tag support for libgme decoder

parent e5989221
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment