mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-04 23:14:37 +00:00
Remove const
from ActorInit
initvars declarations (#1417)
This commit is contained in:
parent
ce2e5e71c8
commit
c0a0688dc5
433 changed files with 435 additions and 435 deletions
|
@ -21,7 +21,7 @@ void EnAObj_SetupBlockRot(EnAObj* this, s16 type);
|
|||
void EnAObj_SetupBoulderFragment(EnAObj* this, s16 type);
|
||||
void EnAObj_SetupBlock(EnAObj* this, s16 type);
|
||||
|
||||
const ActorInit En_A_Obj_InitVars = {
|
||||
ActorInit En_A_Obj_InitVars = {
|
||||
ACTOR_EN_A_OBJ,
|
||||
ACTORCAT_PROP,
|
||||
FLAGS,
|
||||
|
|
|
@ -20,7 +20,7 @@ void EnItem00_DrawCollectible(EnItem00* this, PlayState* play);
|
|||
void EnItem00_DrawHeartContainer(EnItem00* this, PlayState* play);
|
||||
void EnItem00_DrawHeartPiece(EnItem00* this, PlayState* play);
|
||||
|
||||
const ActorInit En_Item00_InitVars = {
|
||||
ActorInit En_Item00_InitVars = {
|
||||
ACTOR_EN_ITEM00,
|
||||
ACTORCAT_MISC,
|
||||
FLAGS,
|
||||
|
|
|
@ -17,7 +17,7 @@ void Player_Destroy(Actor* thisx, PlayState* play);
|
|||
void Player_Update(Actor* thisx, PlayState* play);
|
||||
void Player_Draw(Actor* thisx, PlayState* play);
|
||||
|
||||
const ActorInit Player_InitVars = {
|
||||
ActorInit Player_InitVars = {
|
||||
ACTOR_PLAYER,
|
||||
ACTORCAT_PLAYER,
|
||||
FLAGS,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue