summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/gba/gba_slot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/gba/gba_slot.cpp')
-rw-r--r--src/devices/bus/gba/gba_slot.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/gba/gba_slot.cpp b/src/devices/bus/gba/gba_slot.cpp
index 629557768ed..e27488f1cd0 100644
--- a/src/devices/bus/gba/gba_slot.cpp
+++ b/src/devices/bus/gba/gba_slot.cpp
@@ -659,13 +659,13 @@ image_init_result gba_cart_slot_device::call_load()
{
case 2 * 1024 * 1024:
memcpy(ROM + 0x200000, ROM, 0x200000);
- // intentional fall-through
+ [[fallthrough]];
case 4 * 1024 * 1024:
memcpy(ROM + 0x400000, ROM, 0x400000);
- // intentional fall-through
+ [[fallthrough]];
case 8 * 1024 * 1024:
memcpy(ROM + 0x800000, ROM, 0x800000);
- // intentional fall-through
+ [[fallthrough]];
case 16 * 1024 * 1024:
memcpy(ROM + 0x1000000, ROM, 0x1000000);
break;