From 4396c27a8caa5883c4b86fe61058301dedb40845 Mon Sep 17 00:00:00 2001 From: KaffeeMaus Date: Fri, 26 Jan 2024 12:17:59 +0100 Subject: [PATCH] refactoring: disable debug output --- src/main/c/Georg/tictactoe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/c/Georg/tictactoe.c b/src/main/c/Georg/tictactoe.c index 2e900d6..89fc6a5 100644 --- a/src/main/c/Georg/tictactoe.c +++ b/src/main/c/Georg/tictactoe.c @@ -22,7 +22,7 @@ void startTicTacToe(){ while( GAME.currentState != -1 ){ commandFunction usrCommand; - printf("search command!\n"); + //printf("search command!\n"); usrCommand = getCommandById( GAME.currentState + 1); if( usrCommand != NULL)