mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 07:39:17 +00:00
EXI_DeviceAGP: Annotate fallthrough with [[fallthrough]]
Same behavior, but eleminates compiler warnings.
This commit is contained in:
parent
f2292467ad
commit
28e93827db
1 changed files with 2 additions and 2 deletions
|
@ -344,10 +344,10 @@ void CEXIAgp::ImmWrite(u32 _uData, u32 _uSize)
|
||||||
case 0xAE010000:
|
case 0xAE010000:
|
||||||
case 0xAE090000: // start DMA
|
case 0xAE090000: // start DMA
|
||||||
m_eeprom_write_status = false; // ToDo: Verify with hardware which commands disable EEPROM CS
|
m_eeprom_write_status = false; // ToDo: Verify with hardware which commands disable EEPROM CS
|
||||||
// Fall-through intentional
|
[[fallthrough]];
|
||||||
case 0xAE0A0000: // end DMA
|
case 0xAE0A0000: // end DMA
|
||||||
m_eeprom_pos = 0;
|
m_eeprom_pos = 0;
|
||||||
// Fall-through intentional
|
[[fallthrough]];
|
||||||
default:
|
default:
|
||||||
m_current_cmd = _uData;
|
m_current_cmd = _uData;
|
||||||
m_return_pos = 0;
|
m_return_pos = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue