GBA Audio: Force audio DMAs to not increment destination

This commit is contained in:
Jeffrey Pfau 2016-07-23 00:28:53 -07:00
parent f388d65f5f
commit d175a0ac85
2 changed files with 2 additions and 6 deletions

View File

@ -21,6 +21,7 @@ Misc:
- Qt: Make -g flag work in Qt build
- Qt: Simplify OpenGL context creation
- Debugger: Support register and memory writes via GDB stub
- GBA Audio: Force audio DMAs to not increment destination
0.4.1: (2016-07-11)
Bugfixes:

View File

@ -126,12 +126,6 @@ void GBAAudioScheduleFifoDma(struct GBAAudio* audio, int number, struct GBADMA*
audio->chB.dmaSource = number;
break;
default:
if (audio->chA.dmaSource == number) {
audio->chA.dmaSource = -1;
}
if (audio->chB.dmaSource == number) {
audio->chB.dmaSource = -1;
}
mLOG(GBA_AUDIO, GAME_ERROR, "Invalid FIFO destination: 0x%08X", info->dest);
return;
}
@ -262,6 +256,7 @@ void GBAAudioSampleFIFO(struct GBAAudio* audio, int fifoId, int32_t cycles) {
dma->nextCount = 4;
dma->nextEvent = 0;
dma->reg = GBADMARegisterSetWidth(dma->reg, 1);
dma->reg = GBADMARegisterSetDestControl(dma->reg, 2);
GBAMemoryUpdateDMAs(audio->p, -cycles);
} else {
channel->dmaSource = 0;