all repos — mgba @ e36f3c8211d6b10dbbd3e6c123773bc3b387cee8

mGBA Game Boy Advance Emulator

GBA Video: Fix timing on first scanline
Jeffrey Pfau jeffrey@endrift.com
Tue, 11 Aug 2015 01:14:40 -0700
commit

e36f3c8211d6b10dbbd3e6c123773bc3b387cee8

parent

013948f129f5449d7ba718fca940c0ad5c6cf8e9

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -70,6 +70,7 @@ - Qt: Fix analog buttons not getting unmapped

- 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
M src/gba/video.csrc/gba/video.c

@@ -67,7 +67,7 @@

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;