From 31ab0b3df116652c1e42204d1f074670ffdc1623 Mon Sep 17 00:00:00 2001 From: Rasi Date: Fri, 23 Jul 2010 23:07:36 +0200 Subject: Added album tag support for libgme decoder --- src/decoder/gme_decoder_plugin.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/decoder/gme_decoder_plugin.c') diff --git a/src/decoder/gme_decoder_plugin.c b/src/decoder/gme_decoder_plugin.c index 54947c72c..4b6827a67 100644 --- a/src/decoder/gme_decoder_plugin.c +++ b/src/decoder/gme_decoder_plugin.c @@ -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) -- cgit v1.2.3