diff options
Diffstat (limited to '')
-rw-r--r-- | src/decoder/gme_decoder_plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
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) |