decoder/gme: add missing SUBTUNE_PREFIX

Got lost in 0abee77e62
This commit is contained in:
Max Kellermann 2016-11-22 12:15:51 +01:00
parent aa877a29d7
commit 3b84eb3b70

View File

@ -128,7 +128,7 @@ gme_container_scan(Path path_fs)
for (unsigned i = 1; i < num_songs; ++i) {
char track_name[64];
snprintf(track_name, sizeof(track_name),
"%03u.%s", i, subtune_suffix);
SUBTUNE_PREFIX "%03u.%s", i, subtune_suffix);
tail = list.emplace_after(tail, track_name);
}