From b86f382ce584df17e06d9d53f9260fbe64ed9075 Mon Sep 17 00:00:00 2001 From: Willems Davy Date: Wed, 20 Sep 2023 11:50:35 +0200 Subject: [PATCH] disable all debugmodes --- apps/waternet/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/waternet/app.js b/apps/waternet/app.js index 020903720..a2b3d8955 100644 --- a/apps/waternet/app.js +++ b/apps/waternet/app.js @@ -1,7 +1,7 @@ // -------------------------------------------------------------------------------------------------- // global variables and consts // -------------------------------------------------------------------------------------------------- -const DEBUGMODERAMUSE = 1; +const DEBUGMODERAMUSE = 0; let memStart; if (DEBUGMODERAMUSE) @@ -9,7 +9,7 @@ if (DEBUGMODERAMUSE) const DEBUGMODE = 0; const DEBUGMODEINPUT = 0; -const DEBUGMODESPEED = 1; +const DEBUGMODESPEED = 0; const TILESIZE = 10; const SCREENWIDTH = g.getWidth();