FINALLLYYYY!!! Can't believe it took so long to solve this but now I can gdb and catch aborts.

This commit is contained in:
Zed A. Shaw 2024-11-09 03:57:38 -05:00
parent 43fb60ebaa
commit 5af6d75b4c
3 changed files with 13 additions and 2 deletions

View file

@ -13,8 +13,8 @@
#define WALL_VALUE 1
#define SPACE_VALUE 0
constexpr int GAME_MAP_X = 90;
constexpr int GAME_MAP_Y = 90;
constexpr int GAME_MAP_X = 40;
constexpr int GAME_MAP_Y = 40;
struct Room {
size_t x = 0;