From e235db537908cf03fcc6aefbb6c62bea148c48cd Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Thu, 25 Apr 2024 12:36:12 -0400 Subject: Use resource enums for all other old actors --- src/d/actor/d_a_obj_monument.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/d/actor/d_a_obj_monument.cpp') 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]; } -- cgit v1.2.3