From bae595b973fd48b2c6606371ac577cbbccb7a9fb Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Fri, 29 May 2026 15:45:57 -0400 Subject: Update all code to use the new enum formats --- src/d/actor/d_a_kokiie.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/d/actor/d_a_kokiie.cpp') diff --git a/src/d/actor/d_a_kokiie.cpp b/src/d/actor/d_a_kokiie.cpp index 5398ac1b..14e5e3b1 100644 --- a/src/d/actor/d_a_kokiie.cpp +++ b/src/d/actor/d_a_kokiie.cpp @@ -9,7 +9,7 @@ #include "d/d_s_play.h" #include "d/d_com_inf_game.h" #include "d/d_bg_s_movebg_actor.h" -#include "d/res/res_kokiie.h" +#include "res/Object/Kokiie.h" #include "f_op/f_op_actor_mng.h" #include "f_op/f_op_camera.h" #include "JSystem/JUtility/JUTReport.h" @@ -354,7 +354,7 @@ static BOOL daKokiie_Delete(kokiie_class* i_this) { static BOOL CallbackCreateHeap(fopAc_ac_c* a_this) { kokiie_class* actor = (kokiie_class*)a_this; - J3DModelData* modelData = (J3DModelData*)dComIfG_getObjectRes("Kokiie", KOKIIE_BDL_KOKI_00); + J3DModelData* modelData = (J3DModelData*)dComIfG_getObjectRes("Kokiie", dRes_INDEX_KOKIIE_BDL_KOKI_00_e); actor->mpModel = mDoExt_J3DModel__create(modelData, 0, 0x11020203); if (actor->mpModel == NULL) { return FALSE; @@ -365,7 +365,7 @@ static BOOL CallbackCreateHeap(fopAc_ac_c* a_this) { actor->pm_bgw = new dBgW(); JUT_ASSERT(DEMO_SELECT(929, 950), actor->pm_bgw != NULL); - actor->pm_bgw->Set((cBgD_t*)dComIfG_getObjectRes("Kokiie", KOKIIE_DZB_KOKI_00), dBgW::MOVE_BG_e, &actor->m340); + actor->pm_bgw->Set((cBgD_t*)dComIfG_getObjectRes("Kokiie", dRes_INDEX_KOKIIE_DZB_KOKI_00_e), dBgW::MOVE_BG_e, &actor->m340); actor->pm_bgw->SetCrrFunc(dBgS_MoveBGProc_Typical); return TRUE; } -- cgit v1.2.3