aboutsummaryrefslogtreecommitdiff
path: root/ui.lua
diff options
context:
space:
mode:
Diffstat (limited to 'ui.lua')
-rw-r--r--ui.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui.lua b/ui.lua
index e7f7875..12ec365 100644
--- a/ui.lua
+++ b/ui.lua
@@ -98,7 +98,7 @@ function credits(x,y)
end
--Ending screen
-function finalscorescreen(x,y)
+function finalscorescreen(x)
local playercolour0 = 12
local playercolour1 = 15
if coopmode then
@@ -107,19 +107,19 @@ function finalscorescreen(x,y)
end
poke(0x5f58, 0x9 | 0x4) --makes score BIG
- printdropshadow("vICTORY!", x+32,y+18,6,5)
- printdropshadow(scorewithzeros(tostring(currentscore),4),x+48+circletimex,y+50+circletimey,playercolour0,playercolour1) --2P high score
+ printdropshadow("vICTORY!", x+32,18,6,5)
+ printdropshadow(scorewithzeros(tostring(currentscore),4),x+48+circletimex,50+circletimey,playercolour0,playercolour1) --2P high score
poke(0x5f58)
-- printdropshadow("fINAL sCORE", x+43,y+22,6,5)
if (coopmode and currentscore > highscore1) or (not coopmode and currentscore > highscore0) then
if flashtime then
- printdropshadow("! new high score !", x+27,y+34,11,3)
+ printdropshadow("! new high score !", x+27,34,11,3)
end
end
- printdropshadow(" THANKS FOR PLAYING\nPRESS (❎ ⁙ πŸ…ΎοΈ) TO RETRY", x+15,y+80,11,3)
+ printdropshadow(" THANKS FOR PLAYING\nPRESS (❎ ⁙ πŸ…ΎοΈ) TO RETRY", x+15,80,11,3)
- printdropshadow("MADE WITH β™₯ IN VANCOUVER\n β—† 2022 β—†", x+14,y+113,9,2)
+ printdropshadow("MADE WITH β™₯ IN VANCOUVER\n β—† 2022 β—†", x+14,113,9,2)
-- printdropshadow("β—† 2022 β—†", x+42,y+118,11,3)
end