summaryrefslogtreecommitdiff
path: root/docs/bugs_and_glitches.md
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2021-01-04 18:21:16 -0500
committerGitHub <noreply@github.com>2021-01-04 18:21:16 -0500
commit5cf5adf7d725bcd88a4622adb47f865b9cbef420 (patch)
treec2b33c3e0f206567577b283c338cc2a09b2f5f0c /docs/bugs_and_glitches.md
parent0ca76fc179067ed231c6d99abc0e29b4536422b3 (diff)
parent09fc94677b52cabd8a814df2f42383ad064f7948 (diff)
Merge pull request #1290 from LOuroboros/bugs_doc_update
Updated the bag flickering fix
Diffstat (limited to 'docs/bugs_and_glitches.md')
-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)
...
```