HitFX, Early/Late display with ms #35

Merged
hersi merged 16 commits from domdoc-develop into master 2022-05-27 11:17:12 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 8bbea73be5 - Show all commits

View File

@ -58,10 +58,10 @@ function EarlyLate.render(deltaTime)
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_BASELINE)
if EarlyLate.lastMillisec < 0 then
gfx.FillColor(224, 153, 179)
gfx.FillColor(206, 94, 135)
gfx.FastText("EARLY", screenCenterX - 100 * scale, y)
else
gfx.FillColor(90, 131, 211)
gfx.FillColor(53, 102, 197)
gfx.FastText("LATE", screenCenterX - 100 * scale, y)
end
end