diff options
| author | Tal Hayon <talhayon1@gmail.com> | 2022-08-07 00:39:22 +0300 |
|---|---|---|
| committer | Tal Hayon <talhayon1@gmail.com> | 2022-08-07 00:39:22 +0300 |
| commit | c45195c57754b1c802a2bae3e473df01bed4cd85 (patch) | |
| tree | 1002df8b88f17536bed64c74a62115bb55c6d369 /src/object/stoneTablet.c | |
| parent | 807d313e10be369240a1309f7ffe63c143f87287 (diff) | |
Use negative values where appropriate
Diffstat (limited to 'src/object/stoneTablet.c')
| -rw-r--r-- | src/object/stoneTablet.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/object/stoneTablet.c b/src/object/stoneTablet.c index ad01fcda..06049ca9 100644 --- a/src/object/stoneTablet.c +++ b/src/object/stoneTablet.c @@ -22,9 +22,10 @@ void StoneTablet(Entity* this) { void StoneTablet_Init(Entity* this) { // TODO recreate as TileData[] - static const u16 gUnk_081232EC[] = { 0x4022, 0xfffe, 0x4022, 0xffff, 0x4022, 0x0, 0x4022, 0x1, 0xffff }; - static const u16 gUnk_081232FE[] = { 0x4065, 0xffbf, 0x4022, 0xffc0, 0x4066, 0xffc1, 0x4029, - 0xffff, 0x4026, 0x0, 0x402a, 0x1, 0xffff }; + static const u16 gUnk_081232EC[] = { 0x4022, -2, 0x4022, -1, 0x4022, 0, 0x4022, 1, 0xffff }; + static const u16 gUnk_081232FE[] = { + 0x4065, -65, 0x4022, -64, 0x4066, -63, 0x4029, -1, 0x4026, 0, 0x402a, 1, 0xffff + }; this->action = 1; this->spriteSettings.draw = 1; if (this->type == 3) { |
