diff options
| author | Jasper St. Pierre <jstpierre@mecheye.net> | 2024-12-24 14:37:05 -0800 |
|---|---|---|
| committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2024-12-24 14:37:05 -0800 |
| commit | 2db35c0108f84ec4736e4d4515abe50823e8c833 (patch) | |
| tree | fa29b283e5ff16cae94e58ca37da6c1d3bb3e458 /src/f_pc/f_pc_node_req.cpp | |
| parent | ced4f69ee7af0d6d2e5c60d925bce3854954d86a (diff) | |
name cPhsUNK3_e
Diffstat (limited to 'src/f_pc/f_pc_node_req.cpp')
| -rw-r--r-- | src/f_pc/f_pc_node_req.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/f_pc/f_pc_node_req.cpp b/src/f_pc/f_pc_node_req.cpp index 0e60f278..7c86af26 100644 --- a/src/f_pc/f_pc_node_req.cpp +++ b/src/f_pc/f_pc_node_req.cpp @@ -87,8 +87,8 @@ s32 fpcNdRq_Execute(node_create_request* i_NdCtReq) { case cPhs_COMPLEATE_e: return cPhs_NEXT_e; case cPhs_ERROR_e: - case cPhs_UNK3_e: - return cPhs_UNK3_e; + case cPhs_STOP_e: + return cPhs_STOP_e; default: return result; } @@ -116,7 +116,7 @@ s32 fpcNdRq_Handler() { while (currentNode != NULL) { node_create_request* req = ((request_node_class*)currentNode)->mNodeCrReq; switch (req->mpNodeCrReqMthCls->mpExecuteFunc(req)) { - case cPhs_UNK3_e: + case cPhs_STOP_e: case cPhs_ERROR_e: currentNode = NODE_GET_NEXT(currentNode); if (fpcNdRq_Cancel(req) == 0) { |
