diff options
| author | theo3 <arisstephenson2@gmail.com> | 2020-08-04 17:10:55 -0700 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2020-08-04 17:10:55 -0700 |
| commit | 261ec334a0bedbeb3f4340d22173bcb4dec78e6f (patch) | |
| tree | 59fb19a86218d79012d96fdc1e7ef07bb3df0ac0 /src/manager | |
| parent | 519c3b37d747026fc97ba8135b30b19b81819254 (diff) | |
def ScreenTransition
Diffstat (limited to 'src/manager')
| -rw-r--r-- | src/manager/manager27.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/manager/manager27.c b/src/manager/manager27.c index db5bd8b6..a4f4fda8 100644 --- a/src/manager/manager27.c +++ b/src/manager/manager27.c @@ -6,13 +6,13 @@ typedef struct { u8 filler[0xAC]; u16 unk; -} struct_030010A0; +} ScreenTransition; extern u32 sub_0805C920(Entity*); extern void LoadPalettesByPaletteGroupIndex(u32); extern void (*const gUnk_08108D10[])(Entity*); -extern struct_030010A0 gUnk_030010A0; +extern ScreenTransition gScreenTransition; extern u8 gUnk_08108D20[]; void Manager27(Entity *this) @@ -20,10 +20,10 @@ void Manager27(Entity *this) gUnk_08108D10[this->action](this); if (CheckLocalFlagByOffset(0x300, this->entityType.form + 0x67)) { - gUnk_030010A0.unk |= (1 << (this->entityType).form); + gScreenTransition.unk |= (1 << (this->entityType).form); } else { - gUnk_030010A0.unk &= ~(1 << (this->entityType).form); + gScreenTransition.unk &= ~(1 << (this->entityType).form); } } |
