yuzu: ui: Improve battery symbols

This commit is contained in:
Narr the Reg 2022-02-02 12:22:22 -06:00
parent 79e8f4abe8
commit 064aa3de11
4 changed files with 59 additions and 39 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;