mirror of https://github.com/zeldaret/mm.git
Fixed incorrect actionfunc declarations caused by bad copy/paste (#61)
* Fixed incorrect actionfunc declarations caused by bad copy/paste * Fixed accidental submodule changes
This commit is contained in:
parent
a983d14081
commit
8b812cdf8e
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
struct EnEndingHero;
|
||||
|
||||
typedef void (*EnEndingHeroActionFunc)(struct BgHakaCurtain*, GlobalContext*);
|
||||
typedef void (*EnEndingHeroActionFunc)(struct EnEndingHero*, GlobalContext*);
|
||||
|
||||
typedef struct EnEndingHero {
|
||||
/* 0x000 */ Actor actor;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
struct EnEndingHero2;
|
||||
|
||||
typedef void (*EnEndingHero2ActionFunc)(struct BgHakaCurtain*, GlobalContext*);
|
||||
typedef void (*EnEndingHero2ActionFunc)(struct EnEndingHero2*, GlobalContext*);
|
||||
|
||||
typedef struct EnEndingHero2 {
|
||||
/* 0x000 */ Actor actor;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
struct EnEndingHero3;
|
||||
|
||||
typedef void (*EnEndingHero3ActionFunc)(struct BgHakaCurtain*, GlobalContext*);
|
||||
typedef void (*EnEndingHero3ActionFunc)(struct EnEndingHero3*, GlobalContext*);
|
||||
|
||||
typedef struct EnEndingHero3 {
|
||||
/* 0x000 */ Actor actor;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
struct EnEndingHero4;
|
||||
|
||||
typedef void (*EnEndingHero4ActionFunc)(struct BgHakaCurtain*, GlobalContext*);
|
||||
typedef void (*EnEndingHero4ActionFunc)(struct EnEndingHero4*, GlobalContext*);
|
||||
|
||||
typedef struct EnEndingHero4 {
|
||||
/* 0x000 */ Actor actor;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
struct EnEndingHero5;
|
||||
|
||||
typedef void (*EnEndingHero5ActionFunc)(struct BgHakaCurtain*, GlobalContext*);
|
||||
typedef void (*EnEndingHero5ActionFunc)(struct EnEndingHero5*, GlobalContext*);
|
||||
|
||||
typedef struct EnEndingHero5 {
|
||||
/* 0x000 */ Actor actor;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
struct EnOkarinaEffect;
|
||||
|
||||
typedef void (*EnOkarinaEffectActionFunc)(struct ArmsHook*, GlobalContext*);
|
||||
typedef void (*EnOkarinaEffectActionFunc)(struct EnOkarinaEffect*, GlobalContext*);
|
||||
|
||||
typedef struct EnOkarinaEffect {
|
||||
/* 0x000 */ Actor actor;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
struct EnRsn;
|
||||
|
||||
typedef void (*EnRsnActionFunc)(struct BgHakaCurtain*, GlobalContext*);
|
||||
typedef void (*EnRsnActionFunc)(struct EnRsn*, GlobalContext*);
|
||||
|
||||
typedef struct EnRsn {
|
||||
/* 0x000 */ Actor actor;
|
||||
|
|
|
|||
Loading…
Reference in New Issue