From e4bad18ad7fb200ad00cb2f54bb9393bd9039bad Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 19 Dec 2023 10:15:09 +0000 Subject: [PATCH 1/2] Empty commit to initialize branch From 32c99d9253ef994d9d7c9a3b4af97f62e06aaa2c Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 19 Dec 2023 10:15:10 +0000 Subject: [PATCH 2/2] Set game background back to black --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index 6c2becd..4c059ee 100644 --- a/game.js +++ b/game.js @@ -125,7 +125,7 @@ var Starfield = function (speed, opacity, numStars, clear) { // If the clear option is set, // make the background black instead of transparent if (clear) { - starCtx.fillStyle = "#0F0"; + starCtx.fillStyle = "#000"; starCtx.fillRect(0, 0, stars.width, stars.height); }