Adjusted Early/Late display colors

This commit is contained in:
domdoc 2022-05-16 11:21:19 +02:00
parent ee2ab97f45
commit 8bbea73be5
1 changed files with 2 additions and 2 deletions

View File

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