ServiceField uppercase label

This commit is contained in:
Hersi 2022-04-24 01:35:51 +02:00
parent 0b809dc798
commit 9cab4201c6
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ function ServiceField:drawLabel(deltaTime)
gfx.LoadSkinFont(self.FONT_FACE)
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT | gfx.TEXT_ALIGN_TOP)
gfx.FillColor(table.unpack(color))
gfx.Text(self.label, 0, 0)
gfx.Text(string.upper(self.label), 0, 0)
end
---@param deltaTime number # frametime in seconds