d_a_tag_bottle_item OK, d_a_tag_chgrestart work (#1878)

* d_a_tag_chgrestart

* d_a_tag_bottle_item

* deps fix
This commit is contained in:
Pheenoh
2023-08-13 05:03:43 -06:00
committed by GitHub
parent 8d42ed4176
commit 052e5aee09
34 changed files with 345 additions and 1042 deletions
+3 -3
View File
@@ -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;
}
}