From 8b2f683c20edd7245a31584f014b084040c1d428 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Thu, 14 Dec 2023 22:08:55 +0200 Subject: [PATCH] Todo confirmed --- Core/memory.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Core/memory.c b/Core/memory.c index bb92e46d6..4c641867b 100644 --- a/Core/memory.c +++ b/Core/memory.c @@ -1003,7 +1003,6 @@ static void write_mbc(GB_gameboy_t *gb, uint16_t addr, uint8_t value) static void write_vram(GB_gameboy_t *gb, uint16_t addr, uint8_t value) { GB_display_sync(gb); - gb->cpu_vram_bus = value; // TODO: Verify if the open bus data is updated even when writes are blocked, or at all if (unlikely(gb->vram_write_blocked)) { //GB_log(gb, "Wrote %02x to %04x (VRAM) during mode 3\n", value, addr); return;