Aktualizovat du8/game.c

This commit is contained in:
Mykola Syniavskyi 2025-06-14 03:08:37 +00:00
parent d9dc92b65a
commit fee55cf939

View File

@ -53,7 +53,7 @@ void draw_game(GameState *game) {
char msg[32];
sprintf(msg, "Turn of player %c", (game->current_player == 0) ? 'X' : 'O');
set_message(msg, 17, 11);
set_message("Press ENTER to confirm/Q to quit", 17, 13);
set_message("Press Q to quit", 17, 13);
}
}