mirror of https://github.com/mgba-emu/mgba.git
DS GX: Temporarily remove DMA chunking
This commit is contained in:
parent
a309e38e33
commit
35b6b7ddb4
|
@ -1637,9 +1637,6 @@ void DSGXUpdateGXSTAT(struct DSGX* gx) {
|
||||||
gx->dmaSource = -1;
|
gx->dmaSource = -1;
|
||||||
} else if (GBADMARegisterIsEnable(dma->reg) && entries < (DS_GX_FIFO_SIZE / 2) && !dma->nextCount) {
|
} else if (GBADMARegisterIsEnable(dma->reg) && entries < (DS_GX_FIFO_SIZE / 2) && !dma->nextCount) {
|
||||||
dma->nextCount = dma->count;
|
dma->nextCount = dma->count;
|
||||||
if (dma->count > 112) {
|
|
||||||
dma->nextCount = 112;
|
|
||||||
}
|
|
||||||
dma->when = mTimingCurrentTime(&gx->p->ds9.timing);
|
dma->when = mTimingCurrentTime(&gx->p->ds9.timing);
|
||||||
DSDMAUpdate(&gx->p->ds9);
|
DSDMAUpdate(&gx->p->ds9);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue