mirror of https://github.com/mgba-emu/mgba.git
Revert "GBA Audio: Increase PSG volume (fixes #932)"
This reverts commit faa688c21f
.
This commit is contained in:
parent
9e176fef2b
commit
a6c0ac9941
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue