mirror of https://github.com/mgba-emu/mgba.git
GB: Fix DIV reseting timing
This commit is contained in:
parent
d7d2a552d2
commit
2399219663
|
@ -49,9 +49,11 @@ int32_t GBTimerProcessEvents(struct GBTimer* timer, int32_t cycles) {
|
|||
void GBTimerDivReset(struct GBTimer* timer) {
|
||||
timer->p->memory.io[REG_DIV] = 0;
|
||||
timer->nextDiv = timer->eventDiff + timer->p->cpu->cycles + GB_DMG_DIV_PERIOD;
|
||||
timer->nextEvent = timer->nextTima;
|
||||
if (timer->nextDiv < timer->nextEvent) {
|
||||
timer->nextEvent = timer->nextDiv;
|
||||
if (timer->eventDiff + GB_DMG_DIV_PERIOD < timer->nextEvent) {
|
||||
timer->nextEvent = timer->eventDiff + GB_DMG_DIV_PERIOD;
|
||||
if (timer->nextEvent < timer->p->cpu->nextEvent) {
|
||||
timer->p->cpu->nextEvent = timer->nextEvent;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue