mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-20 13:45:14 -04:00
rename fopAc_ac_c member vars to match TP decomp
This commit is contained in:
@@ -7,20 +7,20 @@
|
||||
#include "f_pc/f_pc_manager.h"
|
||||
|
||||
void fopVw_Draw(view_class* i_this) {
|
||||
fpcLf_DrawMethod(i_this->mSubMtd, i_this);
|
||||
fpcLf_DrawMethod(i_this->sub_method, i_this);
|
||||
}
|
||||
|
||||
void fopVw_Execute(view_class* i_this) {
|
||||
fpcMtd_Execute(&i_this->mSubMtd->mBase, i_this);
|
||||
fpcMtd_Execute(&i_this->sub_method->base, i_this);
|
||||
}
|
||||
|
||||
s32 fopVw_IsDelete(void* i_this) {
|
||||
view_class* _this = (view_class*)i_this;
|
||||
return fpcMtd_IsDelete(&_this->mSubMtd->mBase, _this);
|
||||
return fpcMtd_IsDelete(&_this->sub_method->base, _this);
|
||||
}
|
||||
|
||||
s32 fopVw_Delete(view_class* i_this) {
|
||||
return fpcMtd_Delete(&i_this->mSubMtd->mBase, i_this);
|
||||
return fpcMtd_Delete(&i_this->sub_method->base, i_this);
|
||||
}
|
||||
|
||||
s32 fopVw_Create(void* i_this) {
|
||||
@@ -28,10 +28,10 @@ s32 fopVw_Create(void* i_this) {
|
||||
|
||||
view_process_profile_definition* pProf =
|
||||
(view_process_profile_definition*)fpcM_GetProfile(_this);
|
||||
_this->mSubMtd = pProf->mSubMtd;
|
||||
_this->sub_method = pProf->sub_method;
|
||||
_this->field_0xc4 = pProf->unk28;
|
||||
|
||||
return fpcMtd_Create(&_this->mSubMtd->mBase, _this);
|
||||
return fpcMtd_Create(&_this->sub_method->base, _this);
|
||||
}
|
||||
|
||||
leafdraw_method_class g_fopVw_Method = {
|
||||
|
||||
Reference in New Issue
Block a user