all repos — mgba @ 6906df95e28cd08dac54def70704ac4775c5dbcb

mGBA Game Boy Advance Emulator

VCOUNT is not properly reset on wrap
Jeffrey Pfau jeffrey@endrift.com
Wed, 09 Oct 2013 01:09:09 -0700
commit

6906df95e28cd08dac54def70704ac4775c5dbcb

parent

c3a7d87214c35ee466acec07e96ec6d826149e31

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

jump to
M src/gba/gba-video.csrc/gba/gba-video.c

@@ -95,7 +95,7 @@ video->inVblank = 0;

break; case VIDEO_VERTICAL_TOTAL_PIXELS: video->vcount = 0; - //video->renderPath.startDraw(); + video->p->memory.io[REG_VCOUNT >> 1] = 0; break; }