early-access version 2478

This commit is contained in:
pineappleEA
2022-02-04 07:14:21 +01:00
parent acd76bdc3e
commit 2b28da9e5f
12 changed files with 157 additions and 49 deletions

View File

@@ -28,7 +28,7 @@ Common::Input::BatteryStatus TransformToBattery(const Common::Input::CallbackSta
if (value > 0.8f) {
battery = Common::Input::BatteryLevel::Full;
}
if (value >= 1.0f) {
if (value >= 0.95f) {
battery = Common::Input::BatteryLevel::Charging;
}
break;