mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
cqm_dsk.cpp, ti89.cpp: Fix wrong fallthroughs.
This commit is contained in:
parent
0db09d3940
commit
3a4506bd3e
@ -308,7 +308,7 @@ bool cqm_format::load(io_generic *io, uint32_t form_factor, floppy_image *image)
|
||||
if (heads == 1)
|
||||
return false; // single side ED ?
|
||||
image->set_variant(floppy_image::DSED);
|
||||
[[fallthrough]]; // FIXME: really?
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ void ti68k_state::ti68k_io_w(offs_t offset, uint16_t data)
|
||||
break;
|
||||
case 0x0b:
|
||||
m_timer_val = data & 0xff;
|
||||
[[fallthrough]]; // FIXME: really?
|
||||
break;
|
||||
case 0x0c:
|
||||
m_kb_mask = data & 0x03ff;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user