Loading core/java/com/android/internal/os/BatteryStatsImpl.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -9614,7 +9614,7 @@ public class BatteryStatsImpl extends BatteryStats { resetAllStatsLocked(); resetAllStatsLocked(); if (chargeUAh > 0) { if (chargeUAh > 0) { // Only use the reported coulomb charge value if it is supported and reported. // Only use the reported coulomb charge value if it is supported and reported. mEstimatedBatteryCapacity = (int) ((level / 100.0) * (chargeUAh / 1000)); mEstimatedBatteryCapacity = (int) ((chargeUAh / 1000) / (level / 100.0)); } } mDischargeStartLevel = level; mDischargeStartLevel = level; reset = true; reset = true; Loading Loading
core/java/com/android/internal/os/BatteryStatsImpl.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -9614,7 +9614,7 @@ public class BatteryStatsImpl extends BatteryStats { resetAllStatsLocked(); resetAllStatsLocked(); if (chargeUAh > 0) { if (chargeUAh > 0) { // Only use the reported coulomb charge value if it is supported and reported. // Only use the reported coulomb charge value if it is supported and reported. mEstimatedBatteryCapacity = (int) ((level / 100.0) * (chargeUAh / 1000)); mEstimatedBatteryCapacity = (int) ((chargeUAh / 1000) / (level / 100.0)); } } mDischargeStartLevel = level; mDischargeStartLevel = level; reset = true; reset = true; Loading