diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-01-04 18:21:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 18:21:16 -0500 |
commit | 5cf5adf7d725bcd88a4622adb47f865b9cbef420 (patch) | |
tree | c2b33c3e0f206567577b283c338cc2a09b2f5f0c /docs/bugs_and_glitches.md | |
parent | 0ca76fc179067ed231c6d99abc0e29b4536422b3 (diff) | |
parent | 09fc94677b52cabd8a814df2f42383ad064f7948 (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.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) ... ``` |