diff options
| author | Lioncash <mai.iam2048@gmail.com> | 2024-01-23 16:22:08 -0500 |
|---|---|---|
| committer | Lioncash <mai.iam2048@gmail.com> | 2024-01-23 16:22:10 -0500 |
| commit | adb79d4e32393c4a3db128dfbaf440a7539b0d53 (patch) | |
| tree | e938b25f4356dcdd492a3e70a7188e43cb669580 | |
| parent | 28e93827dbbb36e7dd76079a8953a82deb6bc21b (diff) | |
WiimoteReal: Explicitly break instead of fallthrough in IsBalanceBoard()
Same behavior, no compiler warnings.
| -rw-r--r-- | Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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; |
