summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/rmnimbus.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/rmnimbus.cpp')
-rw-r--r--src/mame/video/rmnimbus.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/video/rmnimbus.cpp b/src/mame/video/rmnimbus.cpp
index c7b4d385d02..4798f151c98 100644
--- a/src/mame/video/rmnimbus.cpp
+++ b/src/mame/video/rmnimbus.cpp
@@ -222,6 +222,7 @@ void rmnimbus_state::nimbus_video_io_w(offs_t offset, uint16_t data, uint16_t me
case 0x09:
colours = FILL_WORD(FG_COLOUR);
+ [[fallthrough]];
case 0x01:
m_x = data;
break;
@@ -233,6 +234,7 @@ void rmnimbus_state::nimbus_video_io_w(offs_t offset, uint16_t data, uint16_t me
case 0x0B:
colours = FILL_WORD(FG_COLOUR);
+ [[fallthrough]];
case 0x03:
m_x = data;
m_y++;
@@ -245,12 +247,14 @@ void rmnimbus_state::nimbus_video_io_w(offs_t offset, uint16_t data, uint16_t me
case 0x0E:
colours = FILL_WORD(FG_COLOUR);
+ [[fallthrough]];
case 0x06:
m_y = data;
break;
case 0x0F:
colours = FILL_WORD(FG_COLOUR);
+ [[fallthrough]];
case 0x07:
m_y = data;
m_x++;