diff --git a/src/gb/io.c b/src/gb/io.c index c6995c07a..e09a33173 100644 --- a/src/gb/io.c +++ b/src/gb/io.c @@ -353,6 +353,7 @@ void GBIOWrite(struct GB* gb, unsigned address, uint8_t value) { return; case REG_LCDC: // TODO: handle GBC differences + GBVideoProcessDots(&gb->video); value = gb->video.renderer->writeVideoRegister(gb->video.renderer, address, value); GBVideoWriteLCDC(&gb->video, value); break;