summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLOuroboros <lunosouroboros@gmail.com>2021-01-04 19:39:10 -0300
committerLOuroboros <lunosouroboros@gmail.com>2021-01-04 19:39:13 -0300
commit09fc94677b52cabd8a814df2f42383ad064f7948 (patch)
treec2b33c3e0f206567577b283c338cc2a09b2f5f0c
parent0ca76fc179067ed231c6d99abc0e29b4536422b3 (diff)
Updated the bag flickering fix
Originally submitted by MEATLOAF#4302
-rw-r--r--docs/bugs_and_glitches.md8
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)
...
```