diff options
| author | theo3 <arisstephenson2@gmail.com> | 2021-12-25 21:28:44 -0800 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2021-12-25 21:28:44 -0800 |
| commit | 079260dbd64b6d090e05b409ded30a95bf33a9e9 (patch) | |
| tree | 7ac618ca2a1a59a8ce7fb042a88968f33d42daab /include | |
| parent | 11bb0e7656594d12bf16a250d43a59361e15bd9e (diff) | |
name asm funcs
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm.h | 2 | ||||
| -rw-r--r-- | include/entity.h | 2 | ||||
| -rw-r--r-- | include/functions.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/asm.h b/include/asm.h index cd151320..99ad082a 100644 --- a/include/asm.h +++ b/include/asm.h @@ -12,7 +12,7 @@ extern void sub_08001242(struct Entity_*); extern void sub_08001290(struct Entity_*, u32); extern void sub_08001324(struct Entity_*); extern u32 sub_08002632(struct Entity_*); -extern u32 sub_08003FC4(struct Entity_*, u32); +extern u32 GravityUpdate(struct Entity_*, u32); extern u32 sub_080043E8(struct Entity_*); extern void sub_08004484(struct Entity_*, struct Entity_*); extern u32 sub_080045D4(s16, s16, u32, u32); diff --git a/include/entity.h b/include/entity.h index 43c3b721..8a895838 100644 --- a/include/entity.h +++ b/include/entity.h @@ -61,7 +61,7 @@ typedef struct Entity_ { /*0x16*/ u8 field_0x16; /*0x17*/ u8 field_0x17; /*0x18*/ struct { - /* */ u32 draw : 2; // 1-2 + /* */ u32 draw : 2; // 0 = no draw, 1 = draw clip, 3 = force draw /* */ u32 ss2 : 1; // 4 /* */ u32 ss3 : 1; // 8 /* */ u32 shadow : 2; //0x10-0x20 diff --git a/include/functions.h b/include/functions.h index 7c875323..23e0a7cc 100644 --- a/include/functions.h +++ b/include/functions.h @@ -161,7 +161,7 @@ extern void sub_0802F45C(Entity*); extern u32 sub_0800419C(Entity*, Entity*, u32, u32); extern void sub_08004542(Entity*); extern void sub_08077B20(); -extern bool32 sub_080040A8(Entity*); +extern bool32 CheckOnScreen(Entity*); extern u32 sub_08017850(Entity*); extern void sub_080809D4(void); extern void sub_08080CB4(Entity*); |
