diff --git a/README.md b/README.md index b931009..4091d45 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Limitation: the player must cheat ## TODO - [X] game over & restart -- [ ] sound effects +- [X] sound effects - [ ] background music - [X] score overlay - [ ] stage 1 diff --git a/chi-tor.wren b/chi-tor.wren index ab92b57..80446b4 100644 --- a/chi-tor.wren +++ b/chi-tor.wren @@ -636,12 +636,12 @@ class Game is TIC{ TIC.cls(Color.black) if (Game.state == Game.title) { _world.draw() - TIC.print("Chi-Tor", W/4, H/4, Color.white, false, 3) - TIC.print("Chi-Tor", W/4-1, H/4-1, Color.red, false, 3) - TIC.print("Z", W/5, 4*H/5, Color.red) - TIC.print(": shoot", W/5+8, 4*H/5, Color.white) - TIC.print("X", W/5, 4*H/5+10, Color.red) - TIC.print(": pause", W/5+8, 4*H/5+10, Color.white) + TIC.print("Chi-Tor", 69, H/4, Color.white, false, 3) + TIC.print("Chi-Tor", 70, H/4-1, Color.red, false, 3) + TIC.print("Z", 60, 110, Color.red) + TIC.print(": shoot", 68, 110, Color.white) + TIC.print("X", 130, 110, Color.red) + TIC.print(": pause", 138, 110, Color.white) } else if (Game.state == Game.game) { _world.draw()