From b72a80196b06750fed09789d6f733423beb1f1d6 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 21 Feb 2023 04:49:32 +1100 Subject: apple/apple2video.cpp: Use real fall-through attribute. --- src/mame/apple/apple2video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/apple/apple2video.cpp b/src/mame/apple/apple2video.cpp index 9f01047ee74..28b1d3b28be 100644 --- a/src/mame/apple/apple2video.cpp +++ b/src/mame/apple/apple2video.cpp @@ -314,7 +314,7 @@ void a2_video_device::render_line(uint16_t *out, uint16_t const *in, int startco { default: color_mode = 0; - // fall through + [[fallthrough]]; case 0: case 1: // Pixel-run coloring render_line_artifact_color(out, in, startcol, stopcol, is_80_column, artifact_color_lut[color_mode]); -- cgit v1.2.3