From 1eb18e7aebb2142a4c99b221d0dcb8c917d28d5a Mon Sep 17 00:00:00 2001 From: Sacha Ligthert Date: Wed, 14 Aug 2024 17:17:11 +0200 Subject: [PATCH] Disable printing of debug information --- robots/game.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robots/game.go b/robots/game.go index 025ff4f..3a33262 100644 --- a/robots/game.go +++ b/robots/game.go @@ -99,7 +99,7 @@ func (game *Game) gameDirector() { // Draw stuff last game.drawScore() - game.drawDebug() + //game.drawDebug() // Draw the screen game.screen.Show()