From c88ed426a805e191742067ad2654871a40bd15e0 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 30 Dec 2015 20:39:38 +0100 Subject: [PATCH] - oops, this somehow lost the shift operator... --- src/sound/music_mus_midiout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound/music_mus_midiout.cpp b/src/sound/music_mus_midiout.cpp index e81adc07f..1ebaa2eb4 100644 --- a/src/sound/music_mus_midiout.cpp +++ b/src/sound/music_mus_midiout.cpp @@ -233,7 +233,7 @@ void MUSSong2::Precache() { for (int b = 0; b < numbanks; b++) { - work[j++] = val | used[k++]; + work[j++] = val | (used[k++] << 7); } } else