From 2a21043fccd4500de8cab8f51bcbb788ff08ae26 Mon Sep 17 00:00:00 2001 From: He4eT Date: Sat, 14 Jun 2025 04:46:23 +0200 Subject: [PATCH] game: interface tuning --- game.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/game.js b/game.js index 516d909..79fa6b1 100644 --- a/game.js +++ b/game.js @@ -166,10 +166,10 @@ function gameScreen() { spawnEnemies() handleMoves() - moveEnemies() - handleMorse() + moveEnemies() + drawArena() drawInterface() drawFX() @@ -190,8 +190,8 @@ function drawArena() { function drawInterface() { drawMorse(player.key.buffer, 100, 123, 15, 36) - print(player.key.history.padStart(HISTORY_LENGTH, ' '), 5, 118, 5, true) - print(player.score.toString().padStart(14, ' '), 152, 124, 6, true) + print(player.key.history.padStart(HISTORY_LENGTH, ' '), 7, 118, 5, true) + print(player.score.toString().padStart(14, ' '), 152, 125, 6, true) } /* Player */