diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-04-02 19:33:05 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-04-02 19:33:05 -0400 |
| commit | 4e7634a693d5fb641ecee69f09d331ace88b063f (patch) | |
| tree | be873a1380d177f7bfd8274bc53baf979699203f /src/f_pc | |
| parent | 8716b2728753398b1c0f5f7f12d737e3b083eab0 (diff) | |
Cleanup
Diffstat (limited to 'src/f_pc')
| -rw-r--r-- | src/f_pc/f_pc_create_req.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/f_pc/f_pc_create_req.cpp b/src/f_pc/f_pc_create_req.cpp index 7f10c564..a2f0d17e 100644 --- a/src/f_pc/f_pc_create_req.cpp +++ b/src/f_pc/f_pc_create_req.cpp @@ -13,9 +13,13 @@ #include "f_pc/f_pc_layer_iter.h" /* 8003CD0C-8003CD28 .text fpcCtRq_isCreatingByID__FP10create_tagPUi */ -bool fpcCtRq_isCreatingByID(create_tag* i_createTag, fpc_ProcID* i_procID) { +BOOL fpcCtRq_isCreatingByID(create_tag* i_createTag, fpc_ProcID* i_procID) { create_request* pReq = static_cast<create_request*>(i_createTag->base.mpTagData); - return pReq->mBsPcId == *i_procID; + if (pReq->mBsPcId == *i_procID) { + return TRUE; + } else { + return FALSE; + } } /* 8003CD28-8003CD60 .text fpcCtRq_IsCreatingByID__FUi */ |
