mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Optimization: Use constant folding for divisions not a power of two (#9609)
This commit is contained in:
@@ -25,7 +25,7 @@ local function convertSizeTo(px, format)
|
||||
local format_factor = 1 -- we are defaulting on mm
|
||||
|
||||
if format == "pt" then
|
||||
format_factor = format_factor * 2660 / 1000 -- see https://www.wikiwand.com/en/Metric_typographic_units
|
||||
format_factor = format_factor * (2660 / 1000) -- see https://www.wikiwand.com/en/Metric_typographic_units
|
||||
elseif format == "in" then
|
||||
format_factor = 1 / 25.4
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user