summaryrefslogtreecommitdiff
path: root/src/f_op/f_op_msg.cpp
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2023-10-15 21:21:07 -0700
committerJasper St. Pierre <jstpierre@mecheye.net>2023-10-15 21:21:18 -0700
commit09c4a4dfc723c427b3ced91a8d31ca97276d7beb (patch)
treeec56ad9b09f6b52b8f203174bcd6de5ea4d91f10 /src/f_op/f_op_msg.cpp
parentc9485926d68d47bfc790fe1e7dddeba33b0e5bbe (diff)
d_place_name 90%
Diffstat (limited to 'src/f_op/f_op_msg.cpp')
-rw-r--r--src/f_op/f_op_msg.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/f_op/f_op_msg.cpp b/src/f_op/f_op_msg.cpp
index 1a2783df..d8a24c64 100644
--- a/src/f_op/f_op_msg.cpp
+++ b/src/f_op/f_op_msg.cpp
@@ -12,7 +12,7 @@
/* 8002A688-8002A6B0 .text fopMsg_Draw__FPv */
int fopMsg_Draw(void* i_this) {
msg_class* _this = static_cast<msg_class*>(i_this);
- return fpcLf_DrawMethod(_this->mSubMtd, i_this);
+ return fpcLf_DrawMethod((leafdraw_method_class*)_this->mSubMtd, i_this);
}
/* 8002A6B0-8002A6E8 .text fopMsg_Execute__FPv */
@@ -21,7 +21,7 @@ int fopMsg_Execute(void* i_this) {
int stat = 1;
if (!dScnPly_ply_c::isPause()) {
- stat = fpcMtd_Execute(&_this->mSubMtd->mBase, i_this);
+ stat = fpcMtd_Execute((process_method_class*)_this->mSubMtd, i_this);
}
return stat;
@@ -31,7 +31,7 @@ int fopMsg_Execute(void* i_this) {
int fopMsg_IsDelete(void* i_this) {
msg_class* _this = static_cast<msg_class*>(i_this);
- int stat = fpcMtd_IsDelete(&_this->mSubMtd->mBase, i_this);
+ int stat = fpcMtd_IsDelete((process_method_class*)_this->mSubMtd, i_this);
if (stat == 1) {
fopDwTg_DrawQTo(&_this->mDwTg);
}
@@ -43,7 +43,7 @@ int fopMsg_IsDelete(void* i_this) {
int fopMsg_Delete(void* i_this) {
msg_class* _this = static_cast<msg_class*>(i_this);
- int stat = fpcMtd_Delete(&_this->mSubMtd->mBase, i_this);
+ int stat = fpcMtd_Delete((process_method_class*)_this->mSubMtd, i_this);
fopDwTg_DrawQTo(&_this->mDwTg);
return stat;
@@ -70,7 +70,7 @@ int fopMsg_Create(void* i_this) {
}
}
- int status = fpcMtd_Create(&_this->mSubMtd->mBase, _this);
+ int status = fpcMtd_Create((process_method_class*)_this->mSubMtd, _this);
if (status == cPhs_COMPLEATE_e) {
s32 priority = fpcLf_GetPriority(_this);
fopDwTg_ToDrawQ(&_this->mDwTg, priority);