From dffce96ed885b63a20a18b8a7c27af42148254b3 Mon Sep 17 00:00:00 2001 From: Sour Date: Wed, 31 Jul 2019 21:22:41 -0400 Subject: [PATCH] PPU: Don't change the OAM eval index when writing to OAMADDR (this causes glitches in Star Ocean) --- Core/Ppu.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Core/Ppu.cpp b/Core/Ppu.cpp index 1da21eb..3dda117 100644 --- a/Core/Ppu.cpp +++ b/Core/Ppu.cpp @@ -1572,7 +1572,6 @@ void Ppu::LatchLocationValues() void Ppu::UpdateOamAddress() { - _oamEvaluationIndex = _oamRamAddress >> 1; _internalOamAddress = (_oamRamAddress << 1); }