From f910272cfa0e5a06c1fb10700d71c8c0c117f0b9 Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Thu, 13 Jul 2017 20:30:33 -0400 Subject: [PATCH] make the SDL speaker a little quieter --- sdl/sdl-speaker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdl/sdl-speaker.cpp b/sdl/sdl-speaker.cpp index 2308610..5b66dab 100644 --- a/sdl/sdl-speaker.cpp +++ b/sdl/sdl-speaker.cpp @@ -149,7 +149,7 @@ void SDLSpeaker::maintainSpeaker(uint32_t c) // FIXME: g_volume - curSpeakerData = mixerValue & 0xFF; + curSpeakerData = (mixerValue & 0xFF) >> 4; } void SDLSpeaker::beginMixing()