SNES: Removed old debug information

This commit is contained in:
Sour 2025-01-05 11:08:12 +09:00
parent b3fd15963b
commit bc2383ab16

View file

@ -1940,9 +1940,6 @@ void SnesPpu::Write(uint32_t addr, uint8_t value)
}
case 0x2105:
if(_state.BgMode != (value & 0x07)) {
LogDebug("[Debug] Entering mode: " + std::to_string(value & 0x07) + " (SL: " + std::to_string(_scanline) + ")");
}
_state.BgMode = value & 0x07;
ConvertToHiRes();