Revert "GBA Audio: Increase PSG volume (fixes #932)"

This reverts commit faa688c21f.
This commit is contained in:
Vicki Pfau 2018-04-07 20:59:28 -07:00
parent 9e176fef2b
commit a6c0ac9941
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ static void _sample(struct mTiming* timing, void* user, uint32_t cyclesLate) {
struct GBAAudio* audio = user;
int16_t sampleLeft = 0;
int16_t sampleRight = 0;
int psgShift = 4 - audio->volume;
int psgShift = 5 - audio->volume;
GBAudioSamplePSG(&audio->psg, &sampleLeft, &sampleRight);
sampleLeft >>= psgShift;
sampleRight >>= psgShift;