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_mdoor.cpp | |
| parent | 5ac87a68855cbb4c9f5c3ab0095b2d969e4cd5de (diff) | |
Update all code to use the new enum formats
Diffstat (limited to 'src/d/actor/d_a_mdoor.cpp')
| -rw-r--r-- | src/d/actor/d_a_mdoor.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/d/actor/d_a_mdoor.cpp b/src/d/actor/d_a_mdoor.cpp index bfa17bec..34072085 100644 --- a/src/d/actor/d_a_mdoor.cpp +++ b/src/d/actor/d_a_mdoor.cpp @@ -7,7 +7,7 @@ #include "d/actor/d_a_mdoor.h" #include "d/d_bg_w.h" #include "d/d_com_inf_game.h" -#include "d/res/res_mdoor.h" +#include "res/Object/Mdoor.h" #include "f_op/f_op_actor_mng.h" const char daMdoor_c::M_arcname[] = "Mdoor"; @@ -44,13 +44,13 @@ BOOL daMdoor_c::CreateHeap() { switch (getShapeType()) { case 1: - modelRes = MDOOR_BDL_MORI2; - bgdRes = MDOOR_DZB_MORI2; + modelRes = dRes_INDEX_MDOOR_BDL_MORI2_e; + bgdRes = dRes_INDEX_MDOOR_DZB_MORI2_e; break; default: - modelRes = MDOOR_BDL_MORI1; - bgdRes = MDOOR_DZB_MORI1; + modelRes = dRes_INDEX_MDOOR_BDL_MORI1_e; + bgdRes = dRes_INDEX_MDOOR_DZB_MORI1_e; break; } |
