From 5e7b33cabd702bec3906beae7a31802fdf3bf51a Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 6 May 2019 23:09:13 -0700 Subject: [PATCH] 20ms, not 2s --- stratosphere/boot/source/boot_check_battery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/boot/source/boot_check_battery.cpp b/stratosphere/boot/source/boot_check_battery.cpp index a2d2e17e2..720993389 100644 --- a/stratosphere/boot/source/boot_check_battery.cpp +++ b/stratosphere/boot/source/boot_check_battery.cpp @@ -211,7 +211,7 @@ static CheckBatteryResult LoopCheckBattery(PmicDriver *pmic_driver, ChargerDrive is_showing_charging_icon = true; } - svcSleepThread(2'000'000'000ul); + svcSleepThread(20'000'000ul); UpdateCharger(pmic_driver, charger_driver, battery_driver, params, charge_voltage_limit); } }