aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-06-12 18:14:48 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-06-12 18:15:02 +0300
commitdfb70e993de78627734c29996446039c12cc0a30 (patch)
tree80b0e2311aee48dfb5633e97b54b21b03ccb6a3c /main.c
parent514f878364b7d270c7a7f5b3e86aa1f546473131 (diff)
downloadastar-dfb70e993de78627734c29996446039c12cc0a30.tar.xz
Make default maze fit on 80x24 terminals
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index a5aaccf..68b5a1c 100644
--- a/main.c
+++ b/main.c
@@ -60,8 +60,8 @@ int main(int argc, char **argv) {
Map map = NULL;
size_t **cell_costs = NULL;
- size_t mwidth = 20; /* Maze width */
- size_t mheight = 10; /* Maze height */
+ size_t mwidth = 19; /* Maze width */
+ size_t mheight = 11; /* Maze height */
char filename[FILENAME_BUF_SIZE] = "\0";