diff options
| author | Marcus Huderle <huderlem@gmail.com> | 2020-08-23 13:44:43 -0500 |
|---|---|---|
| committer | Marcus Huderle <huderlem@gmail.com> | 2020-08-23 13:44:43 -0500 |
| commit | 6550bf3f044678db5f1e5fca2ff0dad37069016f (patch) | |
| tree | 372f5c96d2fb03ce429e9cedd9031a08c4163e3b /src | |
| parent | 8ab5503804436ee7e3ef202f596cd0fe5626a2a9 (diff) | |
Label map-related symbols
Diffstat (limited to 'src')
| -rw-r--r-- | src/sub_0807C998.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sub_0807C998.c b/src/sub_0807C998.c index bc31e322..77dff7bf 100644 --- a/src/sub_0807C998.c +++ b/src/sub_0807C998.c @@ -2,8 +2,8 @@ #include "entity.h" extern void sub_0807C960(); -extern u32 gUnk_0202CEB4; -extern u32 gUnk_02012654; +extern u16 gMetatilesBottom[]; +extern u16 gMetatilesTop[]; extern u8 gUnk_08324AE4; void sub_0807C960(void* dest, u32 offset) @@ -22,8 +22,8 @@ void sub_0807C960(void* dest, u32 offset) } void sub_0807C998(u32* a1) { - sub_0807C960(&gUnk_0202CEB4, a1[0]); - sub_0807C960(&gUnk_0202CEB4 - 0x800, a1[1]); - sub_0807C960(&gUnk_02012654, a1[2]); - sub_0807C960(&gUnk_02012654 - 0x800, a1[3]); + sub_0807C960(gMetatilesBottom, a1[0]); + sub_0807C960(gMetatilesBottom - 0x1000, a1[1]); + sub_0807C960(gMetatilesTop, a1[2]); + sub_0807C960(gMetatilesTop - 0x1000, a1[3]); }
\ No newline at end of file |
