diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceAGP.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceAGP.cpp index a4b51e2fea..f035003cf0 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceAGP.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceAGP.cpp @@ -344,10 +344,10 @@ void CEXIAgp::ImmWrite(u32 _uData, u32 _uSize) case 0xAE010000: case 0xAE090000: // start DMA m_eeprom_write_status = false; // ToDo: Verify with hardware which commands disable EEPROM CS - // Fall-through intentional + [[fallthrough]]; case 0xAE0A0000: // end DMA m_eeprom_pos = 0; - // Fall-through intentional + [[fallthrough]]; default: m_current_cmd = _uData; m_return_pos = 0; diff --git a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp index 213873b61c..10d4beb329 100644 --- a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp +++ b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp @@ -419,6 +419,7 @@ bool Wiimote::IsBalanceBoard() "Failed to read from 0xa400fe, assuming Wiimote is not a Balance Board."); return false; } + break; } default: break;