Skip to content

Commit

Permalink
Add back tic-tac-toe
Browse files Browse the repository at this point in the history
  • Loading branch information
eric15342335 committed Aug 23, 2024
1 parent d5d3b5d commit 378944f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions savepaint/savepaint.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void game_init(void);

// tic-tac-toe game

// void tic_tac_toe_routine(void);
void tic_tac_toe_routine(void);

// end tic-tac-toe game

Expand Down Expand Up @@ -212,8 +212,7 @@ int main(void) {
red_screen();
break;
case game_tic_tac_toe:
// tic_tac_toe_routine();
red_screen();
tic_tac_toe_routine();
break;
case game_snake:
snake_game_routine();
Expand Down Expand Up @@ -915,7 +914,7 @@ void drawScore(uint8_t score) {
}

// tic-tac-toe game
/*

color_t gridColor = {.r = 0, .g = 0, .b = 150}; // Blue
color_t playerColor = {.r = 0, .g = 150, .b = 0}; // Green
color_t botColor = {.r = 150, .g = 0, .b = 0};
Expand Down Expand Up @@ -1122,7 +1121,7 @@ void tic_tac_toe_routine(void) {
break;
}
}
*/

// end of tic-tac-toe game

// moving car
Expand Down

0 comments on commit 378944f

Please sign in to comment.