diff options
| author | 2023-02-21 04:49:32 +1100 | |
|---|---|---|
| committer | 2023-02-21 04:49:32 +1100 | |
| commit | b72a80196b06750fed09789d6f733423beb1f1d6 (patch) | |
| tree | f5d849d50292c437e144210a11b4517297415674 /src | |
| parent | a08c8fd5e542617f32bfab8e6d60401532ed9f09 (diff) | |
apple/apple2video.cpp: Use real fall-through attribute.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/apple/apple2video.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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]); |
