PPU: Fixed bug when reading status flag (this disabled blue emphasis).

Unsure why this line existed - seems to have been added by mistake 5 years ago
This commit is contained in:
Sour 2019-04-12 19:43:03 -04:00
parent 45f7646b99
commit e826d4dfdd

View file

@ -309,7 +309,6 @@ uint8_t PPU::ReadRAM(uint16_t addr)
switch(GetRegisterID(addr)) {
case PPURegisters::Status:
_state.WriteToggle = false;
_flags.IntensifyBlue = false;
UpdateStatusFlag();
returnValue = _state.Status;
openBusMask = 0x1F;