results hotfix

This commit is contained in:
gskbladez 2021-09-13 18:25:42 -04:00
parent 93a208dcb0
commit 3c5ef13c0e
1 changed files with 3 additions and 3 deletions

View File

@ -142,11 +142,11 @@ function drawTimingBar(y, value, max, type)
gfx.BeginPath(); gfx.BeginPath();
if type == 'crit' then if type == 'crit' then
gfx.FillColor(253, 243, 24, 255); gfx.FillColor(255, 255, 84, 255);
elseif type == 'early' then elseif type == 'early' then
gfx.FillColor(215, 48, 182, 255); gfx.FillColor(255, 16, 94, 255);
elseif type == 'late' then elseif type == 'late' then
gfx.FillColor(46, 211, 241, 255); gfx.FillColor(16, 225, 255, 255);
end end
gfx.Rect(rightPanelX + 696, rightPanelY + y, 293 * (value / max), 8); gfx.Rect(rightPanelX + 696, rightPanelY + y, 293 * (value / max), 8);