diff options
| author | Tal Hayon <talhayon1@gmail.com> | 2022-08-08 20:03:12 +0300 |
|---|---|---|
| committer | Tal Hayon <talhayon1@gmail.com> | 2022-08-08 20:03:12 +0300 |
| commit | 79bae9cd8a7891dd4545649fa196aad5a36237d2 (patch) | |
| tree | 1e59403522cbeeaa36c33ca34662f17c49866639 /src/enemy/likeLike.c | |
| parent | 22cbdd2fd645a5525a6ef0c9b8ee8ec11af9e9aa (diff) | |
Various documentations
Diffstat (limited to 'src/enemy/likeLike.c')
| -rw-r--r-- | src/enemy/likeLike.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/enemy/likeLike.c b/src/enemy/likeLike.c index 8f7e01bf..9125158f 100644 --- a/src/enemy/likeLike.c +++ b/src/enemy/likeLike.c @@ -261,11 +261,11 @@ bool32 LikeLike_StealItem(u32 item) { bool32 ret = FALSE; if (GetInventoryValue(item) == 1) { if (ItemIsShield(gSave.stats.itemButtons[SLOT_A])) { - gSave.stats.itemButtons[SLOT_A] = 0; + gSave.stats.itemButtons[SLOT_A] = ITEM_NONE; } if (ItemIsShield(gSave.stats.itemButtons[SLOT_B])) { - gSave.stats.itemButtons[SLOT_B] = 0; + gSave.stats.itemButtons[SLOT_B] = ITEM_NONE; } SetInventoryValue(item, 0); |
