diff --git a/src/menu.js b/src/menu.js index 37cceff..c88ffc2 100644 --- a/src/menu.js +++ b/src/menu.js @@ -39,6 +39,7 @@ class Menu extends Screen { let text = "New Game"; let box = this.newGameBox(); this.context.fillText(text, box.x, box.y + 30); + this.context.strokeText(text, box.x, box.y + 30); // this.context.beginPath(); // box = this.enlargeBox(box); @@ -48,6 +49,7 @@ class Menu extends Screen { text = "Exit"; box = this.exitBox(); this.context.fillText(text, box.x, box.y + 30); + this.context.strokeText(text, box.x, box.y + 30); // this.context.beginPath(); // box = this.enlargeBox(box);