From 8d2aad9a72e3c39bce26f33a25bcca6becf12fb4 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 31 Mar 2020 14:04:46 +0200 Subject: [PATCH] Update --- html/tasks/chapter_10/snake/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/tasks/chapter_10/snake/script.js b/html/tasks/chapter_10/snake/script.js index aaf8794..7a43791 100755 --- a/html/tasks/chapter_10/snake/script.js +++ b/html/tasks/chapter_10/snake/script.js @@ -2,7 +2,7 @@ /* Initialize variables */ const pixelSize = 20; //Cannot be odd -const pixelAmount = 20; +const pixelAmount = 30; /* Register HTML DOM elements by variables */ const canvas = document.getElementById('game');