Fix pitch of channel 3

This commit is contained in:
Jeffrey Pfau 2013-10-20 16:04:22 -07:00
parent 76266a4ee7
commit d6e466dda1
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ static int32_t _updateChannel3(struct GBAAudioChannel3* ch) {
bitsCarry = bits;
}
ch->sample = ((bitsCarry >> 26) - 0x20) * volume;
return 16 * (2048 - ch->control.rate);
return 8 * (2048 - ch->control.rate);
}
static int32_t _updateChannel4(struct GBAAudioChannel4* ch) {