Define size for Progress

This commit is contained in:
Gabriel Tofvesson 2024-10-11 23:30:35 +02:00
parent a483a319e6
commit 3ab4c97fae

View File

@ -323,7 +323,9 @@ local PAGES = {
local damageBar = nil
if damage ~= nil and maxDamage ~= nil then
damageBar = Progress:new{
progress = (damage / maxDamage)
progress = (damage / maxDamage),
width = state.width - 2,
height = 1
}
end