From 2fd912ad83dc15f588b3fce8635b8365233fee82 Mon Sep 17 00:00:00 2001 From: Sopár Adrián Date: Fri, 28 Jun 2024 22:23:33 +0200 Subject: Let the user switch between map and real life mode. --- src/game/game.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/game/game.c') diff --git a/src/game/game.c b/src/game/game.c index a9ac239..a5f4ce0 100644 --- a/src/game/game.c +++ b/src/game/game.c @@ -83,6 +83,7 @@ struct game_state *create_game_state(struct maze *maze) display->maze = maze; display->player_pos = maze->starting_point; display->display_player_path = true; + display->visible = false; //Signs int signs_length = sizeof_2d(maze->width, maze->height, sizeof(int)); display->signs = malloc(signs_length); -- cgit v1.2.3