This commit is contained in:
RealFD 2022-01-03 21:13:03 +01:00
parent 241355c61c
commit 08cf0a530b
1 changed files with 4 additions and 4 deletions

View File

@ -275,9 +275,9 @@ local drawRightPanel = function()
gfx.Text("LABEL", 1080 - 515, rightPanelY - 130);
gfx.FillColor(255,255,255,255)
-- my score
gfx.Text(result.score, 1080 - 485, rightPanelY - 98);
gfx.Text("00000000", 1080 - 485, rightPanelY - 98);
-- best score
gfx.Text(result.highScores, 1080 - 325, rightPanelY - 98);
gfx.Text("10000000", 1080 - 325, rightPanelY - 98);
gfx.Text("IR LABEL", 1080 - 205, rightPanelY - 98);
-- my Score and something
gfx.BeginPath();
@ -286,9 +286,9 @@ local drawRightPanel = function()
gfx.Text("LABEL", 1080 - 515, rightPanelY - 60);
gfx.FillColor(255,255,255,255)
-- my score
gfx.Text(result.score, 1080 - 485, rightPanelY - 28);
gfx.Text("00000000", 1080 - 485, rightPanelY - 28);
-- best score
gfx.Text(result.highScores, 1080 - 325, rightPanelY - 28);
gfx.Text("10000000", 1080 - 325, rightPanelY - 28);
gfx.Text("IR LABEL", 1080 - 205, rightPanelY - 28);
end