From 3c5ef13c0e1f36ed9642553d201bf13bb2b5dbf8 Mon Sep 17 00:00:00 2001 From: gskbladez Date: Mon, 13 Sep 2021 18:25:42 -0400 Subject: [PATCH] results hotfix --- scripts/result.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/result.lua b/scripts/result.lua index cce7308..5add94c 100644 --- a/scripts/result.lua +++ b/scripts/result.lua @@ -142,11 +142,11 @@ function drawTimingBar(y, value, max, type) gfx.BeginPath(); if type == 'crit' then - gfx.FillColor(253, 243, 24, 255); + gfx.FillColor(255, 255, 84, 255); elseif type == 'early' then - gfx.FillColor(215, 48, 182, 255); + gfx.FillColor(255, 16, 94, 255); elseif type == 'late' then - gfx.FillColor(46, 211, 241, 255); + gfx.FillColor(16, 225, 255, 255); end gfx.Rect(rightPanelX + 696, rightPanelY + y, 293 * (value / max), 8);