AnalogController: Fix more log spam

This commit is contained in:
Stenzek 2024-12-01 14:49:38 +10:00
parent 9c2244f40e
commit 00132c6070
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ void AnalogController::UpdateHostVibration()
hvalues[motor] = (state != 0) ? static_cast<float>(strength / 65535.0) : 0.0f;
}
WARNING_LOG("Set small to {}, large to {}", hvalues[SmallMotor], hvalues[LargeMotor]);
DEV_LOG("Set small motor to {}, large motor to {}", hvalues[SmallMotor], hvalues[LargeMotor]);
InputManager::SetPadVibrationIntensity(m_index, hvalues[LargeMotor], hvalues[SmallMotor]);
}