diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-04-25 12:36:12 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-04-25 12:36:12 -0400 |
| commit | e235db537908cf03fcc6aefbb6c62bea148c48cd (patch) | |
| tree | ad4650570abcbf198bde6e5bbfd59f1d7966106a /src/d/actor/d_a_obj_monument.cpp | |
| parent | ae0bc3ff9507a9b0bdbdf17e6a4ca0613cd66e6f (diff) | |
Use resource enums for all other old actors
Diffstat (limited to 'src/d/actor/d_a_obj_monument.cpp')
| -rw-r--r-- | src/d/actor/d_a_obj_monument.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/d/actor/d_a_obj_monument.cpp b/src/d/actor/d_a_obj_monument.cpp index 962ef83a..12809c22 100644 --- a/src/d/actor/d_a_obj_monument.cpp +++ b/src/d/actor/d_a_obj_monument.cpp @@ -4,6 +4,7 @@ // #include "d/actor/d_a_obj_monument.h" +#include "d/res/res_esekh.h" #include "f_op/f_op_actor_mng.h" #include "JSystem/JUtility/JUTAssert.h" #include "d/d_a_obj.h" @@ -16,8 +17,8 @@ namespace daObjMonument { namespace { static Attr_c L_attr[2] = { - { 0x04, 0x08 }, - { 0x05, 0x09 }, + { ESEKH_BDL_ESEKH, ESEKH_DZB_ESEKH }, + { ESEKH_BDL_ESEKH2, ESEKH_DZB_ESEKH2 }, }; inline const Attr_c & attr(Type_e type) { return L_attr[type]; } |
