fix functions not returning a value

This commit is contained in:
Jcw87
2023-12-02 01:09:24 -08:00
parent 82b429b72f
commit 2301aa94bf
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -218,7 +218,7 @@ u32 dLib_setFirstMsg(u16 eventBit, u32 firstMsgID, u32 secondMsgID) {
/* 80057F30-80057F78 .text dLib_checkPlayerInCircle__F4cXyzff */
bool dLib_checkPlayerInCircle(cXyz center, f32 radius, f32 halfHeight) {
fopAc_ac_c* link = dComIfGp_getLinkPlayer();
dLib_checkActorInCircle(center, link, radius, halfHeight);
return dLib_checkActorInCircle(center, link, radius, halfHeight);
}
/* 80057F78-80058098 .text dLib_checkActorInCircle__F4cXyzP10fopAc_ac_cff */