diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2022-07-23 12:43:43 +0200 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2022-07-25 22:45:55 +0200 |
| commit | 852effa474c159398014da736ade6f0fea454de7 (patch) | |
| tree | 97da22c4758ca4156dc9fb7ac123c7a3b0a9e9f5 /src/object/pushableGrave.c | |
| parent | ccba86d292a0e4c8a0e07325ac4fb25e5a58dc89 (diff) | |
Rename objects
Diffstat (limited to 'src/object/pushableGrave.c')
| -rw-r--r-- | src/object/pushableGrave.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/object/pushableGrave.c b/src/object/pushableGrave.c index c3cf2ba5..da643ccb 100644 --- a/src/object/pushableGrave.c +++ b/src/object/pushableGrave.c @@ -6,10 +6,10 @@ */ #define NENT_DEPRECATED -#include "global.h" -#include "object.h" #include "functions.h" +#include "global.h" #include "hitbox.h" +#include "object.h" typedef struct { /*0x00*/ Entity base; @@ -27,7 +27,7 @@ typedef struct { /*0x86*/ u16 pushedFlag; } PushableGraveEntity; -extern void (*const gUnk_081232AC[])(PushableGraveEntity*); +extern void (*const PushableGrave_Actions[])(PushableGraveEntity*); extern const u8 gUnk_081232C0[]; extern const u16 PushableGrave_Tiles[]; @@ -36,7 +36,7 @@ void sub_080977F4(PushableGraveEntity*); bool32 sub_0809785C(PushableGraveEntity*); void PushableGrave(PushableGraveEntity* this) { - gUnk_081232AC[super->action](this); + PushableGrave_Actions[super->action](this); } void PushableGrave_Init(PushableGraveEntity* this) { @@ -197,7 +197,7 @@ bool32 sub_0809798C(PushableGraveEntity* this) { return result; } -void (*const gUnk_081232AC[])(PushableGraveEntity*) = { +void (*const PushableGrave_Actions[])(PushableGraveEntity*) = { PushableGrave_Init, PushableGrave_Action1, PushableGrave_Action2, PushableGrave_Action3, PushableGrave_Action4, }; |
