Version diff cleanup

This commit is contained in:
LagoLunatic
2026-05-10 16:04:55 -04:00
parent 814c70590c
commit 70b8a14aa4
3 changed files with 26 additions and 32 deletions
+10 -13
View File
@@ -2472,27 +2472,24 @@ static cPhs_State daBwd_Create(fopAc_ac_c* a_this) {
fopAcM_ct_Retail(a_this, bwd_class);
bwd_class* i_this = (bwd_class*)a_this;
cPhs_State res = dComIfG_resLoad(&i_this->mPhaseBwd, "Bwd");
#if VERSION == VERSION_DEMO
#if VERSION > VERSION_DEMO
if (res != cPhs_COMPLEATE_e) {
return res;
}
#endif
cPhs_State res2 = dComIfG_resLoad(&i_this->mPhaseBwds, "Bwds");
#if VERSION == VERSION_DEMO
if (res == cPhs_ERROR_e || res2 == cPhs_ERROR_e) {
return cPhs_ERROR_e;
}
if (res != cPhs_COMPLEATE_e) {
return res;
}
if (res2 != cPhs_COMPLEATE_e) {
return res2;
}
fopAcM_SetupActor(a_this, bwd_class);
#else
if (res != cPhs_COMPLEATE_e) {
return res;
}
cPhs_State res2 = dComIfG_resLoad(&i_this->mPhaseBwds, "Bwds");
if (res2 != cPhs_COMPLEATE_e) {
return res2;
}
#endif
if (res2 != cPhs_COMPLEATE_e) {
return res2;
}
fopAcM_ct_Demo(a_this, bwd_class);
i_this->m02BC = fopAcM_GetParam(a_this) & 0xFF;
if (!fopAcM_entrySolidHeap(a_this, useHeapInit, 0x96000)) {
return cPhs_ERROR_e;