summaryrefslogtreecommitdiff
path: root/src/d/d_item.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2026-07-23 22:07:02 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2026-07-23 22:07:02 -0400
commitaf1c8e261e402c7ce879ea541c8dbe794f177483 (patch)
tree8d5bb75e49886fd304b1412fdb7ae15f16d08eb5 /src/d/d_item.cpp
parent4efda6f35537a2d546841d1eb9579563bb581ab8 (diff)
Add enum for pearls/symbols
Diffstat (limited to 'src/d/d_item.cpp')
-rw-r--r--src/d/d_item.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/d/d_item.cpp b/src/d/d_item.cpp
index 22b8f5f1..bcc3d26a 100644
--- a/src/d/d_item.cpp
+++ b/src/d/d_item.cpp
@@ -1069,17 +1069,17 @@ void item_func_triforce8() {
/* 800C43D8-800C4408 .text item_func_pearl1__Fv */
void item_func_pearl1() {
- dComIfGs_onSymbol(0);
+ dComIfGs_onSymbol(dSymbol_NAYRU_e);
}
/* 800C4408-800C4438 .text item_func_pearl2__Fv */
void item_func_pearl2() {
- dComIfGs_onSymbol(1);
+ dComIfGs_onSymbol(dSymbol_DIN_e);
}
/* 800C4438-800C4468 .text item_func_pearl3__Fv */
void item_func_pearl3() {
- dComIfGs_onSymbol(2);
+ dComIfGs_onSymbol(dSymbol_FARORE_e);
}
/* 800C4468-800C446C .text item_func_knowledge_tf__Fv */
@@ -2433,17 +2433,17 @@ int item_getcheck_func_triforce8() {
/* 800C7010-800C7040 .text item_getcheck_func_pearl1__Fv */
int item_getcheck_func_pearl1() {
- return dComIfGs_isSymbol(0);
+ return dComIfGs_isSymbol(dSymbol_NAYRU_e);
}
/* 800C7040-800C7070 .text item_getcheck_func_pearl2__Fv */
int item_getcheck_func_pearl2() {
- return dComIfGs_isSymbol(1);
+ return dComIfGs_isSymbol(dSymbol_DIN_e);
}
/* 800C7070-800C70A0 .text item_getcheck_func_pearl3__Fv */
int item_getcheck_func_pearl3() {
- return dComIfGs_isSymbol(2);
+ return dComIfGs_isSymbol(dSymbol_FARORE_e);
}
/* 800C70A0-800C70D0 .text item_getcheck_func_tact_song1__Fv */