fix build

This commit is contained in:
Prakxo
2024-09-07 00:26:07 +02:00
parent 4eb639655c
commit 9fb6343e17
2 changed files with 9 additions and 0 deletions
+8
View File
@@ -489,6 +489,14 @@ extern int mNT_check_unknown(mActor_name_t item_no);
((item) == GOLD_TREE_BEES) \
)
#define IS_ITEM_PALM_TREE(item) ((item) >= TREE_PALM_SAPLING && (item) < TREE_PALM_FRUIT)
#define IS_ITEM_TREE_STUMP(item) ((item >= TREE_STUMP001 && (item) <= TREE_STUMP004) || \
(item) >= TREE_PALM_STUMP001 && (item) <= TREE_PALM_STUMP004 || \
(item) >= CEDAR_TREE_STUMP001 && (item) <= CEDAR_TREE_STUMP004 || \
(item) >= GOLD_TREE_STUMP001 && (item) <= GOLD_TREE_STUMP004 \
)
#define IS_ITEM_SHAKEABLE_TREE(item) (IS_ITEM_MED_TREE(item) || IS_ITEM_LARGE_TREE(item) || IS_ITEM_FULL_TREE(item))
#define IS_ITEM_BEE_TREE(item) ((item) == TREE_BEES || (item) == CEDAR_TREE_BEES || (item) == GOLD_TREE_BEES)
+1
View File
@@ -1,6 +1,7 @@
#include "ef_effect_control.h"
#include "m_common_data.h"
#include "sys_matrix.h"
static void eKasamizu_init(xyz_t pos, int prio, s16 angle, GAME* game, u16 item_name, s16 arg0, s16 arg1);
static void eKasamizu_ct(eEC_Effect_c* effect, GAME* game, void* ct_arg);