From eb19998e1482465e346ef42a21f294524b12f641 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Fri, 22 Jan 2016 20:24:46 -0800 Subject: [PATCH] GB Video: Fix initialization --- src/gb/video.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gb/video.c b/src/gb/video.c index 62f9d56ca..e51c9f678 100644 --- a/src/gb/video.c +++ b/src/gb/video.c @@ -41,6 +41,7 @@ void GBVideoInit(struct GBVideo* video) { void GBVideoReset(struct GBVideo* video) { video->ly = 0; video->mode = 1; + video->stat = 1; video->nextEvent = INT_MAX; video->eventDiff = 0;