diff options
author | LOuroboros <lunosouroboros@gmail.com> | 2021-01-04 19:39:10 -0300 |
---|---|---|
committer | LOuroboros <lunosouroboros@gmail.com> | 2021-01-04 19:39:13 -0300 |
commit | 09fc94677b52cabd8a814df2f42383ad064f7948 (patch) | |
tree | c2b33c3e0f206567577b283c338cc2a09b2f5f0c | |
parent | 0ca76fc179067ed231c6d99abc0e29b4536422b3 (diff) |
Updated the bag flickering fix
Originally submitted by MEATLOAF#4302
-rw-r--r-- | docs/bugs_and_glitches.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md index 285718598..07955ecd5 100644 --- a/docs/bugs_and_glitches.md +++ b/docs/bugs_and_glitches.md @@ -89,10 +89,10 @@ Then edit `BagMenu_MoveCursorCallback` in [src/item_menu.c](https://github.com/p ```diff ... { -- RemoveBagItemIconSprite(1 ^ gBagMenu->unk81B_1); -+ HideBagItemIconSprite(gBagMenu->unk81B_1 ^ 1); -+ RemoveBagItemIconSprite(gBagMenu->unk81B_1); - if (a != -2) +- RemoveBagItemIconSprite(1 ^ gBagMenu->itemIconSlot); ++ HideBagItemIconSprite(gBagMenu->itemIconSlot ^ 1); ++ RemoveBagItemIconSprite(gBagMenu->itemIconSlot); + if (itemIndex != LIST_CANCEL) ... ``` |