Sfoglia il codice sorgente

fix map adjancency types

SBird1337 5 anni fa
parent
commit
af9da25e0d

+ 1
- 1
sots-private

@@ -1 +1 @@
1
-Subproject commit 8b48ca3e38d8d150a701fee9065d0e0d1e497337
1
+Subproject commit f4b05f42abdca68e3d2080d93ff2bb072933fc6e

+ 7
- 0
src/include/constants/pymap/map_adjacency_types.h Vedi File

@@ -0,0 +1,7 @@
1
+#define ANB_KEINS 0x0
2
+#define ANB_UNTEN 0x1
3
+#define ANB_OBEN 0x2
4
+#define ANB_LINKS 0x3
5
+#define ANB_RECHTS 0x4
6
+#define ANB_ABTAUCHEN 0x5
7
+#define ANB_AUFTAUCHEN 0x6

+ 7
- 0
src/include/constants/pymap/map_adjacency_types.s Vedi File

@@ -0,0 +1,7 @@
1
+.equ ANB_KEINS, 0x0
2
+.equ ANB_UNTEN, 0x1
3
+.equ ANB_OBEN, 0x2
4
+.equ ANB_LINKS, 0x3
5
+.equ ANB_RECHTS, 0x4
6
+.equ ANB_ABTAUCHEN, 0x5
7
+.equ ANB_AUFTAUCHEN, 0x6

+ 1
- 0
src/include/pymap_constants.h Vedi File

@@ -7,6 +7,7 @@
7 7
 #include <constants/pymap/items.h>
8 8
 #include <constants/pymap/level_types.h>
9 9
 #include <constants/pymap/main_story_variables.h>
10
+#include <constants/pymap/map_adjacency_types.h>
10 11
 #include <constants/pymap/map_battle_styles.h>
11 12
 #include <constants/pymap/map_carun_city_maps.h>
12 13
 #include <constants/pymap/map_connections.h>