diff options
Diffstat (limited to 'src/d/actor/d_a_npc_ls1.cpp')
| -rw-r--r-- | src/d/actor/d_a_npc_ls1.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/d/actor/d_a_npc_ls1.cpp b/src/d/actor/d_a_npc_ls1.cpp index 34bf55b8..cc20516a 100644 --- a/src/d/actor/d_a_npc_ls1.cpp +++ b/src/d/actor/d_a_npc_ls1.cpp @@ -463,17 +463,17 @@ void daNpc_Ls1_c::shadowDraw() { } /* 00004288-00004418 .text _draw__11daNpc_Ls1_cFv */ -bool daNpc_Ls1_c::_draw() { +BOOL daNpc_Ls1_c::_draw() { /* Nonmatching */ } /* 00004418-00004654 .text _execute__11daNpc_Ls1_cFv */ -bool daNpc_Ls1_c::_execute() { +BOOL daNpc_Ls1_c::_execute() { /* Nonmatching */ } /* 00004654-000046A8 .text _delete__11daNpc_Ls1_cFv */ -bool daNpc_Ls1_c::_delete() { +BOOL daNpc_Ls1_c::_delete() { /* Nonmatching */ } @@ -503,28 +503,28 @@ void daNpc_Ls1_c::CreateHeap() { } /* 000055BC-000055DC .text daNpc_Ls1_Create__FP10fopAc_ac_c */ -static cPhs_State daNpc_Ls1_Create(fopAc_ac_c*) { - /* Nonmatching */ +static cPhs_State daNpc_Ls1_Create(fopAc_ac_c* i_this) { + return ((daNpc_Ls1_c*)i_this)->_create(); } /* 000055DC-000055FC .text daNpc_Ls1_Delete__FP11daNpc_Ls1_c */ -static BOOL daNpc_Ls1_Delete(daNpc_Ls1_c*) { - /* Nonmatching */ +static BOOL daNpc_Ls1_Delete(daNpc_Ls1_c* i_this) { + return ((daNpc_Ls1_c*)i_this)->_delete(); } /* 000055FC-0000561C .text daNpc_Ls1_Execute__FP11daNpc_Ls1_c */ -static BOOL daNpc_Ls1_Execute(daNpc_Ls1_c*) { - /* Nonmatching */ +static BOOL daNpc_Ls1_Execute(daNpc_Ls1_c* i_this) { + return ((daNpc_Ls1_c*)i_this)->_execute(); } /* 0000561C-0000563C .text daNpc_Ls1_Draw__FP11daNpc_Ls1_c */ -static BOOL daNpc_Ls1_Draw(daNpc_Ls1_c*) { - /* Nonmatching */ +static BOOL daNpc_Ls1_Draw(daNpc_Ls1_c* i_this) { + return ((daNpc_Ls1_c*)i_this)->_draw(); } /* 0000563C-00005644 .text daNpc_Ls1_IsDelete__FP11daNpc_Ls1_c */ static BOOL daNpc_Ls1_IsDelete(daNpc_Ls1_c*) { - /* Nonmatching */ + return TRUE; } static actor_method_class l_daNpc_Ls1_Method = { |
