* adjust gauge % pos on result

This commit is contained in:
FajsiEx 2021-08-25 15:17:59 +02:00
parent 2c3be8e60b
commit 4b903164f4
1 changed files with 2 additions and 2 deletions

View File

@ -278,8 +278,8 @@ local drawRightPanelContent = function()
-- Draw gauge % -- Draw gauge %
gfx.FontSize(24) gfx.FontSize(24)
gfx.Text(math.floor(result.gauge * 100) .. '%', rightPanelX + 984, gfx.Text(math.floor(result.gauge * 100) .. '%', rightPanelX + 987,
rightPanelY + 295); rightPanelY + 294);
-- Draw gauge fill -- Draw gauge fill
local gaugeFillImage = gaugeEffPassFillImage; local gaugeFillImage = gaugeEffPassFillImage;