summaryrefslogtreecommitdiff
path: root/src/d/actor/d_a_shand.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2026-05-29 15:45:57 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2026-05-29 16:34:55 -0400
commitbae595b973fd48b2c6606371ac577cbbccb7a9fb (patch)
tree939f388f0dbd380db1045a7a4d8954cf43db2c33 /src/d/actor/d_a_shand.cpp
parent5ac87a68855cbb4c9f5c3ab0095b2d969e4cd5de (diff)
Update all code to use the new enum formats
Diffstat (limited to 'src/d/actor/d_a_shand.cpp')
-rw-r--r--src/d/actor/d_a_shand.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/actor/d_a_shand.cpp b/src/d/actor/d_a_shand.cpp
index a3eed252..bed411f1 100644
--- a/src/d/actor/d_a_shand.cpp
+++ b/src/d/actor/d_a_shand.cpp
@@ -5,7 +5,7 @@
#include "d/dolzel_rel.h" // IWYU pragma: keep
#include "d/actor/d_a_shand.h"
-#include "d/res/res_shand.h"
+#include "res/Object/Shand.h"
#include "d/d_bg_s_gnd_chk.h"
#include "d/d_bg_s_lin_chk.h"
#include "d/d_cc_uty.h"
@@ -393,9 +393,9 @@ static BOOL daShand_Delete(shand_class* i_this) {
static BOOL useHeapInit(shand_class* i_this) {
int bti_idx;
if ((fopAcM_GetParam(i_this) & 0xff) == 53) {
- bti_idx = SHAND_BTI_VHLIF_VINE;
+ bti_idx = dRes_INDEX_SHAND_BTI_VHLIF_VINE_e;
} else {
- bti_idx = SHAND_BTI_SHAND;
+ bti_idx = dRes_INDEX_SHAND_BTI_SHAND_e;
}
ResTIMG* img = static_cast<ResTIMG*>(dComIfG_getObjectRes("Shand", bti_idx));