mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06:00
raise kMaxIterationCycles to 64
This commit is contained in:
@ -246,6 +246,11 @@ u8 GPU2D::Read8(u32 addr)
|
|||||||
case 0x049: return WinCnt[1];
|
case 0x049: return WinCnt[1];
|
||||||
case 0x04A: return WinCnt[2];
|
case 0x04A: return WinCnt[2];
|
||||||
case 0x04B: return WinCnt[3];
|
case 0x04B: return WinCnt[3];
|
||||||
|
|
||||||
|
// there are games accidentally trying to read those
|
||||||
|
// those are write-only
|
||||||
|
case 0x04C:
|
||||||
|
case 0x04D: return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("unknown GPU read8 %08X\n", addr);
|
printf("unknown GPU read8 %08X\n", addr);
|
||||||
|
@ -69,7 +69,7 @@ u64 FrameStartTimestamp;
|
|||||||
|
|
||||||
int CurCPU;
|
int CurCPU;
|
||||||
|
|
||||||
const s32 kMaxIterationCycles = 16;
|
const s32 kMaxIterationCycles = 64;
|
||||||
|
|
||||||
u32 ARM9ClockShift;
|
u32 ARM9ClockShift;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user