From aeecd9875750813217170ee42de16e937bee2615 Mon Sep 17 00:00:00 2001 From: Michel Heily Date: Thu, 22 Oct 2020 23:59:19 +0300 Subject: [PATCH] core: Fix debug read of OAM memory Former-commit-id: 49c79b74146b89197f2f3bc8ac58f26abb230146 Former-commit-id: acda49ed0fffc481fe4b77fee1ef99b7038215df --- core/src/gpu/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/gpu/mod.rs b/core/src/gpu/mod.rs index 0ef4ec9..42b4b7f 100644 --- a/core/src/gpu/mod.rs +++ b/core/src/gpu/mod.rs @@ -722,7 +722,7 @@ impl DebugRead for Gpu { match page { PAGE_PALRAM => self.palette_ram.read_8(addr & 0x3ff), PAGE_VRAM => self.vram.read_8(addr & ((VIDEO_RAM_SIZE as u32) - 1)), - PAGE_OAM => self.vram.read_8(addr & 0x3ff), + PAGE_OAM => self.oam.read_8(addr & 0x3ff), _ => unreachable!(), } }