diff options
| author | RibbonCable <ambiguousmachine@gmail.com> | 2022-02-20 18:27:48 -0800 |
|---|---|---|
| committer | RibbonCable <ambiguousmachine@gmail.com> | 2022-02-20 18:27:48 -0800 |
| commit | 3a78f154f1fc147a8d7a21861d22083ef1c049ab (patch) | |
| tree | dd4b96c012c6d334b16715c456a7ef298c10d90a /ui.lua | |
| parent | ae91f49c0e637c9b47f8ce5537f4e3a14eea1b92 (diff) | |
scorescreen polish
Diffstat (limited to 'ui.lua')
| -rw-r--r-- | ui.lua | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 |
