diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2022-01-31 15:57:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 15:57:02 -0800 |
commit | 1d64db5214b455bbd6f50ad6369ec04420e03984 (patch) | |
tree | 1a78046d52129ea3ddafc06d391706590a54ceaf /src/dungeon_util.c | |
parent | 408fe77d7b9440d7eb5d46eda5f920572d516d67 (diff) | |
parent | 5dc5b3b1f97f9467005dadd63f5f6e052f984bc3 (diff) |
Merge pull request #94 from AnonymousRandomPerson/master
Dungeon movement decomp
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}, |