diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-05-29 15:45:57 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-05-29 16:34:55 -0400 |
| commit | bae595b973fd48b2c6606371ac577cbbccb7a9fb (patch) | |
| tree | 939f388f0dbd380db1045a7a4d8954cf43db2c33 /src/d/d_wind_arrow.cpp | |
| parent | 5ac87a68855cbb4c9f5c3ab0095b2d969e4cd5de (diff) | |
Update all code to use the new enum formats
Diffstat (limited to 'src/d/d_wind_arrow.cpp')
| -rw-r--r-- | src/d/d_wind_arrow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/d_wind_arrow.cpp b/src/d/d_wind_arrow.cpp index 1f5449cb..765ff98d 100644 --- a/src/d/d_wind_arrow.cpp +++ b/src/d/d_wind_arrow.cpp @@ -6,7 +6,7 @@ #include "d/dolzel.h" // IWYU pragma: keep #include "d/d_wind_arrow.h" #include "d/d_kankyo_wether.h" -#include "d/res/res_always.h" +#include "res/Object/Always.h" #include "m_Do/m_Do_graphic.h" #include "f_op/f_op_kankyo_mng.h" #include "JSystem/JKernel/JKRSolidHeap.h" @@ -110,7 +110,7 @@ static BOOL dWindArrow_Delete(dWindArrow_c* i_this) { cPhs_State dWindArrow_c::create() { new (this) dWindArrow_c(); - J3DModelData* modelData = (J3DModelData*)dComIfG_getObjectRes("Always", ALWAYS_BDL_YA); + J3DModelData* modelData = (J3DModelData*)dComIfG_getObjectRes("Always", dRes_INDEX_ALWAYS_BDL_YA_e); JUT_ASSERT(0x56, modelData != NULL); mModelInfo.mpModel = mDoExt_J3DModel__create(modelData, 0x80000, 0x200); @@ -122,7 +122,7 @@ cPhs_State dWindArrow_c::create() { return cPhs_ERROR_e; } - J3DAnmTextureSRTKey* anm = (J3DAnmTextureSRTKey*)dComIfG_getObjectRes("Always", ALWAYS_BTK_YA); + J3DAnmTextureSRTKey* anm = (J3DAnmTextureSRTKey*)dComIfG_getObjectRes("Always", dRes_INDEX_ALWAYS_BTK_YA_e); JUT_ASSERT(0x65, anm != NULL); if (!mModelInfo.mBtkAnm.init(modelData, anm, TRUE, J3DFrameCtrl::EMode_LOOP)) { |
