mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-03-26 03:19:41 -04:00
fix: Clang Compilation Errors
Signed-off-by: Collecting <collecting@noreply.localhost>
This commit is contained in:
@@ -37,7 +37,7 @@ Result NpadVibration::SetSettingsService(
|
||||
Result NpadVibration::SetVibrationMasterVolume(f32 master_volume) {
|
||||
std::scoped_lock lock{mutex};
|
||||
|
||||
if (master_volume < 0.0f && master_volume > 1.0f) {
|
||||
if (master_volume < 0.0f || master_volume > 1.0f) {
|
||||
return ResultVibrationStrengthOutOfRange;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user