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/actor/d_a_hys.cpp | |
| parent | 5ac87a68855cbb4c9f5c3ab0095b2d969e4cd5de (diff) | |
Update all code to use the new enum formats
Diffstat (limited to 'src/d/actor/d_a_hys.cpp')
| -rw-r--r-- | src/d/actor/d_a_hys.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/d/actor/d_a_hys.cpp b/src/d/actor/d_a_hys.cpp index 914b0e94..851ed74c 100644 --- a/src/d/actor/d_a_hys.cpp +++ b/src/d/actor/d_a_hys.cpp @@ -5,18 +5,18 @@ #include "d/dolzel_rel.h" // IWYU pragma: keep #include "d/actor/d_a_hys.h" -#include "d/res/res_hys.h" +#include "res/Object/Hys.h" #include "d/d_com_inf_game.h" #include "m_Do/m_Do_mtx.h" const char* daHys_c::m_arcname[2] = {"Hys", "Hys"}; /* Model file indexes. */ -const s16 daHys_c::m_bdlidx[2] = {HYS_BDL_HYS, HYS_BDL_HYS}; +const s16 daHys_c::m_bdlidx[2] = {dRes_INDEX_HYS_BDL_HYS_e, dRes_INDEX_HYS_BDL_HYS_e}; /* Texture animation file indexes. */ -const s16 daHys_c::m_btpidx[2] = {HYS_BTP_HYS, HYS_BTP_HYS}; +const s16 daHys_c::m_btpidx[2] = {dRes_INDEX_HYS_BTP_HYS_e, dRes_INDEX_HYS_BTP_HYS_e}; /* Collision mesh file indexes. */ -const s16 daHys_c::m_dzbidx[2] = {HYS_DZB_HYS, HYS_DZB_HYS}; +const s16 daHys_c::m_dzbidx[2] = {dRes_INDEX_HYS_DZB_HYS_e, dRes_INDEX_HYS_DZB_HYS_e}; const u32 daHys_c::m_heapsize[2] = {0xA00, 0xA00}; const f32 daHys_c::m_tg_r[2] = {35.0f, 70.0f}; |
