mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-13 04:39:36 +00:00
more fixing PR
This commit is contained in:
parent
553329a9e6
commit
78c65878ed
2 changed files with 5 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
#include "z_en_ani.h"
|
#include "z_en_ani.h"
|
||||||
|
|
||||||
#define ROOM 0x00
|
#define ROOM 0x00
|
||||||
#define FLAGS 0x00000009
|
#define FLAGS 0x00000009
|
||||||
|
|
||||||
void EnAni_Init(EnAni* this, GlobalContext* globalCtx);
|
void EnAni_Init(EnAni* this, GlobalContext* globalCtx);
|
||||||
|
@ -9,7 +9,8 @@ void EnAni_Update(EnAni* this, GlobalContext* globalCtx);
|
||||||
void EnAni_Draw(EnAni* this, GlobalContext* globalCtx);
|
void EnAni_Draw(EnAni* this, GlobalContext* globalCtx);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
const ActorInit En_Ani_InitVars = {
|
const ActorInit En_Ani_InitVars =
|
||||||
|
{
|
||||||
ACTOR_EN_ANI,
|
ACTOR_EN_ANI,
|
||||||
ACTORTYPE_NPC,
|
ACTORTYPE_NPC,
|
||||||
ROOM,
|
ROOM,
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
#include <ultra64.h>
|
#include <ultra64.h>
|
||||||
#include <global.h>
|
#include <global.h>
|
||||||
|
|
||||||
typedef struct {
|
typedef struct
|
||||||
|
{
|
||||||
/* 0x0000 */ Actor actor;
|
/* 0x0000 */ Actor actor;
|
||||||
/* 0x014C */ char unk_14C[0x168];
|
/* 0x014C */ char unk_14C[0x168];
|
||||||
} EnAni; // size = 0x02B4
|
} EnAni; // size = 0x02B4
|
||||||
|
|
Loading…
Reference in a new issue