diff --git a/src/sdl/mixer_sound.c b/src/sdl/mixer_sound.c
index 8938cb7492565f8e8550df85effae50e14883520..fd8e64de5f2a93f0184753d99d9e9f55948c45d4 100644
--- a/src/sdl/mixer_sound.c
+++ b/src/sdl/mixer_sound.c
@@ -458,7 +458,8 @@ static void mix_gme(void *udata, Uint8 *stream, int len)
 
 	// apply volume to stream
 	for (i = 0, p = (short *)stream; i < len/2; i++, p++)
-		*p = ((INT32)*p) * music_volume*2/31;
+		*p = ((INT32)*p) * music_volume*2 / 42;
+		CONS_Printf("%hs", p);
 }
 #endif