diff --git a/src/platform/switch/main.c b/src/platform/switch/main.c index cd6780deb..156a9ac44 100644 --- a/src/platform/switch/main.c +++ b/src/platform/switch/main.c @@ -359,7 +359,7 @@ static int _batteryState(void) { u32 charge; int state = 0; if (R_SUCCEEDED(psmGetBatteryChargePercentage(&charge))) { - state = charge / 25; + state = (charge + 12) / 25; } ChargerType type; if (R_SUCCEEDED(psmGetChargerType(&type)) && type) {