Fix /* */ to /**/ (#1455)

This commit is contained in:
Anghelo Carvajal
2023-10-27 17:55:14 -03:00
committed by GitHub
parent 4422df3ef6
commit e634be7cd4
4 changed files with 36 additions and 36 deletions
+9 -9
View File
@@ -14,15 +14,15 @@ void EnAObj_Idle(EnAObj* this, PlayState* play);
void EnAObj_Talk(EnAObj* this, PlayState* play);
ActorInit En_A_Obj_InitVars = {
/* */ ACTOR_EN_A_OBJ,
/* */ ACTORCAT_PROP,
/* */ FLAGS,
/* */ GAMEPLAY_KEEP,
/* */ sizeof(EnAObj),
/* */ EnAObj_Init,
/* */ EnAObj_Destroy,
/* */ EnAObj_Update,
/* */ EnAObj_Draw,
/**/ ACTOR_EN_A_OBJ,
/**/ ACTORCAT_PROP,
/**/ FLAGS,
/**/ GAMEPLAY_KEEP,
/**/ sizeof(EnAObj),
/**/ EnAObj_Init,
/**/ EnAObj_Destroy,
/**/ EnAObj_Update,
/**/ EnAObj_Draw,
};
static ColliderCylinderInit sCylinderInit = {