diff options
author | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2022-01-25 22:46:40 -0500 |
---|---|---|
committer | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2022-01-25 22:46:40 -0500 |
commit | 154c44250512828d56f5431188a7907cd149ef10 (patch) | |
tree | efcc44e62d9699b51cac25a68cb4b762544c5ed4 /src/dungeon_util.c | |
parent | 408fe77d7b9440d7eb5d46eda5f920572d516d67 (diff) |
Decomped CanMoveInDirection()
Diffstat (limited to 'src/dungeon_util.c')
-rw-r--r-- | src/dungeon_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dungeon_util.c b/src/dungeon_util.c index 5b6bd5a..c5b5695 100644 --- a/src/dungeon_util.c +++ b/src/dungeon_util.c @@ -3,7 +3,7 @@ #include "dungeon_map_access.h" -const struct Position gAdjacentTileOffsets[NUM_DIRECTIONS] = { +const struct Position gAdjacentTileOffsets[] = { {0, 1}, {1, 1}, {1, 0}, |