summaryrefslogtreecommitdiff
path: root/src/f_pc/f_pc_base.cpp
diff options
context:
space:
mode:
authorhatal175 <hatal175@users.noreply.github.com>2025-07-26 03:44:23 +0300
committerGitHub <noreply@github.com>2025-07-25 17:44:23 -0700
commit70a174197780758981cae2c012cee02f8d4ff83f (patch)
treea4d90893b5d1de7adb4ccddc778b96ce1989c457 /src/f_pc/f_pc_base.cpp
parent585670f2b1240d10a7e0a3c6dc7e84d8909206f3 (diff)
d_a_obj_twGate Matching (#2555)
* d_a_obj_twGate Matching * d_a_obj_volcbom OK
Diffstat (limited to 'src/f_pc/f_pc_base.cpp')
-rw-r--r--src/f_pc/f_pc_base.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/f_pc/f_pc_base.cpp b/src/f_pc/f_pc_base.cpp
index a422bea1a2..f9f73276aa 100644
--- a/src/f_pc/f_pc_base.cpp
+++ b/src/f_pc/f_pc_base.cpp
@@ -145,7 +145,7 @@ base_process_class* fpcBs_Create(s16 i_profname, fpc_ProcID i_procID, void* i_ap
fpcPi_Init(&pprocess->priority, pprocess, pprofile->layer_id, pprofile->list_id,
pprofile->list_priority);
- pprocess->init_state = 0;
+ pprocess->state.init_state = 0;
pprocess->unk_0xA = 0;
pprocess->id = i_procID;
pprocess->profname = i_profname;
@@ -164,19 +164,19 @@ int fpcBs_SubCreate(base_process_class* i_proc) {
case cPhs_NEXT_e:
case cPhs_COMPLEATE_e:
fpcBs_DeleteAppend(i_proc);
- i_proc->create_phase = cPhs_NEXT_e;
+ i_proc->state.create_phase = cPhs_NEXT_e;
return cPhs_NEXT_e;
case cPhs_INIT_e:
- case cPhs_LOADING_e:
- i_proc->init_state = 1;
- i_proc->create_phase = cPhs_INIT_e;
+case cPhs_LOADING_e:
+ i_proc->state.init_state = 1;
+ i_proc->state.create_phase = cPhs_INIT_e;
return cPhs_INIT_e;
case cPhs_UNK3_e:
- i_proc->create_phase = cPhs_UNK3_e;
+ i_proc->state.create_phase = cPhs_UNK3_e;
return cPhs_UNK3_e;
case cPhs_ERROR_e:
default:
- i_proc->create_phase = cPhs_ERROR_e;
+ i_proc->state.create_phase = cPhs_ERROR_e;
return cPhs_ERROR_e;
}
}