make the SDL speaker a little quieter

This commit is contained in:
Jorj Bauer 2017-07-13 20:30:33 -04:00
parent 16615e60b1
commit f910272cfa
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ void SDLSpeaker::maintainSpeaker(uint32_t c)
// FIXME: g_volume
curSpeakerData = mixerValue & 0xFF;
curSpeakerData = (mixerValue & 0xFF) >> 4;
}
void SDLSpeaker::beginMixing()