Procházet zdrojové kódy

Disable useless debug coords.

Sacha Ligthert před 2 roky
rodič
revize
44f2c5a41d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      game.go

+ 1 - 1
game.go

@@ -93,7 +93,7 @@ func gameDirector(screen tcell.Screen, style tcell.Style, keypresses chan int, g
 
 		// Draw the screen
 		drawBox(screen, style, 0, 0, screenx-1, screeny-1)
-		drawCoords(screen, style, &snake)
+		//drawCoords(screen, style, &snake)
 		drawApple(screen, style, &apple)
 		drawSnake(screen, style, &snake)
 		drawScore(screen, style, score)