summaryrefslogtreecommitdiff
path: root/src/f_pc/f_pc_create_req.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2024-07-12 21:14:13 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2024-07-12 21:14:13 -0400
commit2def735282a0584a5a2b3ed007bd99ddfb72b394 (patch)
tree0aed235b7e874a33aa9d1b1a1cba67bc67f4077e /src/f_pc/f_pc_create_req.cpp
parent61d9f474a53cc8a02490e8cdb1b4f86bb4d1af95 (diff)
Add fpc_ProcID type and use it for all process IDs
See https://github.com/zeldaret/tp/pull/2173
Diffstat (limited to 'src/f_pc/f_pc_create_req.cpp')
-rw-r--r--src/f_pc/f_pc_create_req.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/f_pc/f_pc_create_req.cpp b/src/f_pc/f_pc_create_req.cpp
index 75de6cc7..be22a3ab 100644
--- a/src/f_pc/f_pc_create_req.cpp
+++ b/src/f_pc/f_pc_create_req.cpp
@@ -13,13 +13,13 @@
#include "f_pc/f_pc_layer_iter.h"
/* 8003CD0C-8003CD28 .text fpcCtRq_isCreatingByID__FP10create_tagPUi */
-bool fpcCtRq_isCreatingByID(create_tag* i_createTag, uint* 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;
}
/* 8003CD28-8003CD60 .text fpcCtRq_IsCreatingByID__FUi */
-BOOL fpcCtRq_IsCreatingByID(uint i_id) {
+BOOL fpcCtRq_IsCreatingByID(fpc_ProcID i_id) {
return fpcCtIt_Judge((fpcLyIt_JudgeFunc)fpcCtRq_isCreatingByID, &i_id) != NULL ? TRUE : FALSE;
}