mirror of https://github.com/mgba-emu/mgba.git
GBA Video: Fix timing on first scanline
This commit is contained in:
parent
013948f129
commit
e36f3c8211
1
CHANGES
1
CHANGES
|
@ -70,6 +70,7 @@ Bugfixes:
|
|||
- GBA Video: Prevent tiles < 512 from being used in modes 3 - 5
|
||||
- Qt: Fix passing command line options
|
||||
- Qt: Fix crashes on Windows by using using QMetaObject to do cross-thread calls
|
||||
- GBA Video: Fix timing on first scanline
|
||||
Misc:
|
||||
- Qt: Handle saving input settings better
|
||||
- Debugger: Free watchpoints in addition to breakpoints
|
||||
|
|
|
@ -67,7 +67,7 @@ void GBAVideoReset(struct GBAVideo* video) {
|
|||
video->lastHblank = 0;
|
||||
video->nextHblank = VIDEO_HDRAW_LENGTH;
|
||||
video->nextEvent = video->nextHblank;
|
||||
video->eventDiff = video->nextEvent;
|
||||
video->eventDiff = 0;
|
||||
|
||||
video->nextHblankIRQ = 0;
|
||||
video->nextVblankIRQ = 0;
|
||||
|
|
Loading…
Reference in New Issue