summaryrefslogtreecommitdiff
path: root/src/d/d_item.cpp
diff options
context:
space:
mode:
authorPheenoh <pheenoh@gmail.com>2023-08-13 05:03:43 -0600
committerGitHub <noreply@github.com>2023-08-13 05:03:43 -0600
commit91d04c794d850f060f195eb9750c2f9a8173a1df (patch)
treed7b6acd722860e8e10c5a063aad1ef005ecc5bb5 /src/d/d_item.cpp
parent08fa2f03fc1333057e265e80dd7ba8b1fc59b472 (diff)
d_a_tag_bottle_item OK, d_a_tag_chgrestart work (#1878)
* d_a_tag_chgrestart * d_a_tag_bottle_item * deps fix
Diffstat (limited to 'src/d/d_item.cpp')
-rw-r--r--src/d/d_item.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/d_item.cpp b/src/d/d_item.cpp
index a1fcebf76d..ee2aa474e7 100644
--- a/src/d/d_item.cpp
+++ b/src/d/d_item.cpp
@@ -2448,7 +2448,7 @@ s32 isArrow(u8 item_no) {
}
/* 8009B708-8009B77C 096048 0074+00 0/0 4/4 1/1 .text isBottleItem__FUc */
-bool isBottleItem(u8 item_no) {
+BOOL isBottleItem(u8 item_no) {
switch (item_no) {
case OIL_BOTTLE3:
case EMPTY_BOTTLE:
@@ -2481,9 +2481,9 @@ bool isBottleItem(u8 item_no) {
case POU_FIRE2:
case POU_FIRE3:
case POU_FIRE4:
- return true;
+ return TRUE;
default:
- return false;
+ return FALSE;
}
}