summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/disksys.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-12-24 08:57:13 +1100
committer Vas Crabb <vas@vastheman.com>2021-12-24 08:57:13 +1100
commitc0e2654dea26aa008a9725ae5606c39acff7c751 (patch)
treee93dded26b11a1afe349c901bbc40fda3379610a /src/devices/bus/nes/disksys.cpp
parent5fe4dbaa9b347354744722049bde248cca96c294 (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.cpp2
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);