diff options
author | 2021-12-24 08:57:13 +1100 | |
---|---|---|
committer | 2021-12-24 08:57:13 +1100 | |
commit | c0e2654dea26aa008a9725ae5606c39acff7c751 (patch) | |
tree | e93dded26b11a1afe349c901bbc40fda3379610a /src/devices/bus/nes/disksys.cpp | |
parent | 5fe4dbaa9b347354744722049bde248cca96c294 (diff) |
-emu/render.cpp: Get the initial view check off the hot path (fixes MT08159).
-Tidied up a few things, reduced bloat in a few more slots layouts.
Diffstat (limited to 'src/devices/bus/nes/disksys.cpp')
-rw-r--r-- | src/devices/bus/nes/disksys.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/nes/disksys.cpp b/src/devices/bus/nes/disksys.cpp index d3f10eb27cc..9b90c4ba43e 100644 --- a/src/devices/bus/nes/disksys.cpp +++ b/src/devices/bus/nes/disksys.cpp @@ -214,7 +214,7 @@ uint8_t nes_disksys_device::read_m(offs_t offset) void nes_disksys_device::hblank_irq(int scanline, int vblank, int blanked) { -// FIXME: This looks like a gross hack that ties the disk byte transfer IRQ to the PPU. Seriously? + // FIXME: This looks like a gross hack that ties the disk byte transfer IRQ to the PPU. Seriously? if (m_irq_transfer) { set_irq_line(ASSERT_LINE); |