From 37b7595db7f2f3f53422cace2a04be45ee5a4b16 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Thu, 14 Apr 2011 21:48:48 +0000 Subject: [PATCH] - Oh my goodness, maybe I need to try compiling things before committing them! SVN r3181 (trunk) --- 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 9c25f6ce2b..ee84239d6d 100644 --- a/src/sound/music_mus_midiout.cpp +++ b/src/sound/music_mus_midiout.cpp @@ -325,7 +325,7 @@ DWORD *MUSSong2::MakeEvents(DWORD *events, DWORD *max_event_p, DWORD max_time) if (mid1 == 7) { // Clamp volume to 127, since DMX apparently allows 8-bit volumes. // Fix courtesy of Gez, courtesy of Ben Ryves. - mid2 = VolumeControllerChange(channel, MIN(mid2, 0x7F)); + mid2 = VolumeControllerChange(channel, MIN(mid2, 0x7F)); } } break;