summaryrefslogtreecommitdiff
path: root/src/f_pc/f_pc_stdcreate_req.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-03-18 16:17:53 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2025-03-18 16:17:53 -0400
commite71662caa0d0344b12e593041fe8a7e7680b9bab (patch)
tree39ac304589dccd843089827febb6037ac57b923d /src/f_pc/f_pc_stdcreate_req.cpp
parent4c3bd2c65111f6520a409f2fe06018b6648ba4fe (diff)
More return types, set up all dBgS_MoveBgActor subclasses
Diffstat (limited to 'src/f_pc/f_pc_stdcreate_req.cpp')
-rw-r--r--src/f_pc/f_pc_stdcreate_req.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/f_pc/f_pc_stdcreate_req.cpp b/src/f_pc/f_pc_stdcreate_req.cpp
index 331a149d..a7cce4ed 100644
--- a/src/f_pc/f_pc_stdcreate_req.cpp
+++ b/src/f_pc/f_pc_stdcreate_req.cpp
@@ -54,7 +54,8 @@ cPhs_State fpcSCtRq_phase_IsComplete(standard_create_request_class* i_SCtReq) {
/* 80040794-800407E4 .text fpcSCtRq_phase_PostMethod__FP29standard_create_request_class */
cPhs_State fpcSCtRq_phase_PostMethod(standard_create_request_class* i_SCtReq) {
- if (i_SCtReq->mpCallBack != NULL && i_SCtReq->mpCallBack(i_SCtReq->base.mpRes, i_SCtReq->mpCallBackUserData) == FALSE) {
+ if (i_SCtReq->mpCallBack != NULL &&
+ i_SCtReq->mpCallBack(i_SCtReq->base.mpRes, i_SCtReq->mpCallBackUserData) == 0) {
return cPhs_INIT_e;
} else {
return cPhs_NEXT_e;