diff options
author | 2020-11-15 03:58:54 +1100 | |
---|---|---|
committer | 2020-11-15 03:58:54 +1100 | |
commit | 4298ce18fb33d5935231a83bcf1f60289eb6b09c (patch) | |
tree | 6468a077c367eb806dcd91a69d33954e77e65f14 /src/devices/machine/strata.cpp | |
parent | f191d038ec1fa110e06374ff79e345c91b3365d7 (diff) |
Enable GCC implicit fallthrough warning.
I've guessed whether break or [[fallthrough]] is appropriate. In cases
where it looked particularly suspicious, I added a FIXME comment. All
of these changes should be reviewed by someone familiar with the code.
Diffstat (limited to 'src/devices/machine/strata.cpp')
-rw-r--r-- | src/devices/machine/strata.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/machine/strata.cpp b/src/devices/machine/strata.cpp index df434adbd24..7976a16def9 100644 --- a/src/devices/machine/strata.cpp +++ b/src/devices/machine/strata.cpp @@ -500,6 +500,7 @@ void strataflash_device::write8_16(offs_t offset, uint16_t data, bus_width_t bus else m_wrbuf_base = offset; memset(m_wrbuf, 0xff, m_wrbuf_len); /* right??? */ + [[fallthrough]]; case FM_WRBUFPART3: if ((offset < m_wrbuf_base) || (offset >= (m_wrbuf_base + m_wrbuf_len))) m_status |= 0x30; |