From 15fd1e34050c0fef2d8ff1b97d5d89622724ff83 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Mon, 4 Nov 2024 22:32:24 +0000 Subject: [PATCH] Increase maze size and decrease cell size --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index d6e814b..6c4ea4f 100644 --- a/main.c +++ b/main.c @@ -14,14 +14,14 @@ #include #include -#define MAZE_SIZE 24 +#define MAZE_SIZE 100 #define GRID_SIZE (2 * MAZE_SIZE - 1) #define MARGIN 2 #define WALL_THICKNESS 1 #define WINDOW_SIZE (GRID_SIZE + 2 * (WALL_THICKNESS + MARGIN)) -#define PX(x) ((x) << 3) +#define PX(x) ((x) << 2) #define GOAL (GRID_SIZE - 1) #define MAX_PATH_LENGTH (MAZE_SIZE * MAZE_SIZE)