PPU: Don't change the OAM eval index when writing to OAMADDR (this causes glitches in Star Ocean)

This commit is contained in:
Sour 2019-07-31 21:22:41 -04:00
parent 33cee67e61
commit dffce96ed8

View file

@ -1572,7 +1572,6 @@ void Ppu::LatchLocationValues()
void Ppu::UpdateOamAddress()
{
_oamEvaluationIndex = _oamRamAddress >> 1;
_internalOamAddress = (_oamRamAddress << 1);
}