diff options
| author | louist103 <35883445+louist103@users.noreply.github.com> | 2022-11-21 17:45:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-21 19:45:46 -0300 |
| commit | 90469fd44220b0d40c1b7d0091089867cc47ef34 (patch) | |
| tree | a539784f780342caa6ce1e09c1c791aab7697a28 /src/code | |
| parent | fccd760be1b9c2cf81409e29790f45864b9f9047 (diff) | |
Use pointer types instead of s32 (#1151)
* pointers
* remove from segment_symbols
* format
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/z_sram_NES.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/code/z_sram_NES.c b/src/code/z_sram_NES.c index 6a4210df7..80ca0a4a6 100644 --- a/src/code/z_sram_NES.c +++ b/src/code/z_sram_NES.c @@ -268,17 +268,11 @@ u8 gAmmoItems[] = { ITEM_NONE, // SLOT_BOTTLE_6 }; -s32 D_801C67C8[] = { 0, 0x40, 0x80, 0xC0, 0x100, 0x180, 0x200, 0x280 }; +s32 D_801C67C8[] = { 0, 0x40, 0x80, 0xC0, 0x100, 0x180, 0x200, 0x280, 0x300, 0x380 }; -s32 D_801C67E8[] = { 0x300, 0x380 }; +s32 D_801C67F0[] = { 0x40, 0x40, 0x40, 0x40, 0x80, 0x80, 0x80, 0x80, 1, 1 }; -s32 D_801C67F0[] = { 0x40, 0x40, 0x40, 0x40, 0x80, 0x80, 0x80, 0x80 }; - -s32 D_801C6810[] = { 1, 1 }; - -s32 D_801C6818[] = { 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80 }; - -s32 D_801C6838[] = { 1, 1 }; +s32 D_801C6818[] = { 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 1, 1 }; s32 D_801C6840[] = { 0x100, 0x180, 0x200, 0x280 }; |
