diff options
Diffstat (limited to 'src/f_pc/f_pc_executor.cpp')
| -rw-r--r-- | src/f_pc/f_pc_executor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/f_pc/f_pc_executor.cpp b/src/f_pc/f_pc_executor.cpp index 1bd53269db..0327d6e729 100644 --- a/src/f_pc/f_pc_executor.cpp +++ b/src/f_pc/f_pc_executor.cpp @@ -14,7 +14,7 @@ base_process_class* fpcEx_Search(fpcLyIt_JudgeFunc i_judgeFunc, void* i_data) { } /* 80021358-8002139C 0044+00 s=1 e=5 z=30 None .text fpcEx_SearchByID__FUi */ -base_process_class* fpcEx_SearchByID(unsigned int i_id) { +base_process_class* fpcEx_SearchByID(fpc_ProcID i_id) { if (i_id + 2 <= 1) return NULL; @@ -22,7 +22,7 @@ base_process_class* fpcEx_SearchByID(unsigned int i_id) { } /* 8002139C-800213C4 0028+00 s=0 e=7 z=42 None .text fpcEx_IsExist__FUi */ -BOOL fpcEx_IsExist(unsigned int i_id) { +BOOL fpcEx_IsExist(fpc_ProcID i_id) { return fpcEx_SearchByID(i_id) != NULL ? TRUE : FALSE; } @@ -85,4 +85,4 @@ s32 fpcEx_ToExecuteQ(base_process_class* i_proc) { /* 80021568-80021588 0020+00 s=0 e=1 z=0 None .text fpcEx_Handler__FPFPvPv_i */ void fpcEx_Handler(fpcLnIt_QueueFunc i_queueFunc) { fpcLnIt_Queue(i_queueFunc); -}
\ No newline at end of file +} |
