summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pluto5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pluto5.cpp')
-rw-r--r--src/mame/drivers/pluto5.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/pluto5.cpp b/src/mame/drivers/pluto5.cpp
index 838b935ccb1..3ef4d55c4a0 100644
--- a/src/mame/drivers/pluto5.cpp
+++ b/src/mame/drivers/pluto5.cpp
@@ -215,9 +215,10 @@ uint32_t pluto5_state::pluto5_mem_r(offs_t offset, uint32_t mem_mask)
switch ( cs )
{
- case 1:if (offset < 0x100000) // If reading beyond end of region, log error instead of crashing
- return m_cpuregion[offset];
-
+ case 1:
+ if (offset < 0x100000) // If reading beyond end of region, log error instead of crashing
+ return m_cpuregion[offset];
+ [[fallthrough]];
default:
logerror("%08x maincpu read access offset %08x mem_mask %08x cs %d\n", pc, offset*4, mem_mask, cs);