Skip to content

Commit

Permalink
Fixed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Bocchio01 committed Mar 28, 2023
1 parent 85c7df6 commit f303f58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Main.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ bool check_tie(int board[ROWS][COLUMNS])
int main(int argc, char *argv[])
{

// Dichiarazione variabili
bool debug_mode = argc > 1;
// Variables declaration
bool debug = argc > 1;

int board[ROWS][COLUMNS], player_index;

Expand All @@ -138,7 +138,7 @@ int main(int argc, char *argv[])
players[1].symbol = CIRCLE;

// Program begin
if (!debug_mode)
if (!debug)
{
printf("Welcome to the 'Four in a Row' game!\n");
printf("This program was developed by Tommaso Bocchietti back in 2017 at high school and updated in 2023.\n");
Expand Down Expand Up @@ -175,7 +175,7 @@ int main(int argc, char *argv[])
player_index = 0;
}

// Inizio gioco
// Game loop
do
{

Expand Down

0 comments on commit f303f58

Please sign in to comment.