From 3b84eb3b70bff27db275ef38c67e2eeb6c91d256 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 22 Nov 2016 12:15:51 +0100 Subject: [PATCH] decoder/gme: add missing SUBTUNE_PREFIX Got lost in 0abee77e626 --- src/decoder/plugins/GmeDecoderPlugin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decoder/plugins/GmeDecoderPlugin.cxx b/src/decoder/plugins/GmeDecoderPlugin.cxx index 508949ad8..de1bed299 100644 --- a/src/decoder/plugins/GmeDecoderPlugin.cxx +++ b/src/decoder/plugins/GmeDecoderPlugin.cxx @@ -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); }