address variaty of compiler warnings and code documentation

This commit is contained in:
Banjo Kazooie
2022-12-03 01:30:35 -06:00
parent 263b5bab4e
commit 1c063c781c
211 changed files with 1341 additions and 1323 deletions

View File

@@ -186,7 +186,7 @@ void func_802C74F4(Actor *actor, s32 arg1, f32 arg2){
}
void func_802C7568(enum actor_e actor_id, s32 arg1, f32 arg2){
Actor *actor = func_80326EEC(actor_id);
Actor *actor = actorArray_findActorFromActorId(actor_id);
if(actor)
func_802C74F4(actor, arg1, arg2);
}
@@ -198,7 +198,7 @@ void func_802C75A0(Actor *actor, s32 arg1){
}
void func_802C75C8(enum actor_e actor_id, s32 arg1){
Actor *actor = func_80326EEC(actor_id);
Actor *actor = actorArray_findActorFromActorId(actor_id);
if(actor)
func_802C75A0(actor, arg1);
}
@@ -208,7 +208,7 @@ void func_802C75F8(Actor *actor, s32 arg1){
}
void func_802C7600(enum actor_e actor_id, s32 arg1){
Actor *actor = func_80326EEC(actor_id);
Actor *actor = actorArray_findActorFromActorId(actor_id);
if(actor)
func_802C75F8(actor, arg1);
}
@@ -345,4 +345,4 @@ void func_802C79C4(void){
mapSpecificFlags_set(i, FALSE);
}
}
}
}