From 3a01a93e172088fcc7eaabda9b670fe98e369eaa Mon Sep 17 00:00:00 2001 From: plane000 Date: Sat, 13 Oct 2018 20:14:05 +0100 Subject: [PATCH] asdf --- JavaScript/Snetris/index.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/JavaScript/Snetris/index.js b/JavaScript/Snetris/index.js index 1c9d9fd..1aeb602 100644 --- a/JavaScript/Snetris/index.js +++ b/JavaScript/Snetris/index.js @@ -145,10 +145,6 @@ function draw() { } else { ctx.fillRect(i * BLOCK_SIZE.x + BLOCK_SIZE.x / 3, j * BLOCK_SIZE.y + BLOCK_SIZE.y / 3, BLOCK_SIZE.x / 3, BLOCK_SIZE.y / 3); } - // Debug for drawing squares - // ctx.fillStyle = '#FFFFFF'; - // ctx.rect(i * BLOCK_SIZE.x, j * BLOCK_SIZE.y, BLOCK_SIZE.x, BLOCK_SIZE.y); - // ctx.stroke(); } } }