diff --git a/src/gba/gba-video.c b/src/gba/gba-video.c index 762b88232..3fd89e7cc 100644 --- a/src/gba/gba-video.c +++ b/src/gba/gba-video.c @@ -46,6 +46,11 @@ void GBAVideoInit(struct GBAVideo* video) { video->nextVcounterIRQ = 0; video->vram = anonymousMemoryMap(SIZE_VRAM); + + int i; + for (i = 0; i < 128; ++i) { + video->oam.obj[i].disable = 1; + } } void GBAVideoDeinit(struct GBAVideo* video) {