OnionUI / Onion

OS overhaul for Miyoo Mini and Mini+
https://onionui.github.io
GNU General Public License v3.0
3.16k stars 190 forks source link

Fix discrepancy between MainUI and Onion volume #1495

Closed tGecko closed 1 month ago

tGecko commented 3 months ago

Use the same algorithm to calculate the volume as MainUI

(x << 7) / 20 is equivalent to (x * 128) / 20 which is just plain linear scaling

Comparison: image

Fixes #1046