From e634be7cd4b751ce19c1bb57a0c1d1b7d254e6ad Mon Sep 17 00:00:00 2001 From: Anghelo Carvajal Date: Fri, 27 Oct 2023 17:55:14 -0300 Subject: Fix `/* */` to `/**/` (#1455) --- src/code/z_en_a_keep.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/code') diff --git a/src/code/z_en_a_keep.c b/src/code/z_en_a_keep.c index 0f7224388..009a82f97 100644 --- a/src/code/z_en_a_keep.c +++ b/src/code/z_en_a_keep.c @@ -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 = { -- cgit v1.2.3