diff options
author | Sierra A <6080951+Sierraffinity@users.noreply.github.com> | 2020-06-10 17:17:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 17:17:35 -0700 |
commit | 46f4a4bbf7239743c333cd32d30b74a7b3176acc (patch) | |
tree | bf38b6f1e63f1cd485e60adcdb8899bafde56fc7 /src/script_menu.c | |
parent | a05eea93122f04e4aa3580e0e505376ead0d6e19 (diff) | |
parent | 74edaed4265cc7e964a5383c3e0fb8ef256f2bf8 (diff) |
Merge pull request #1074 from Sierraffinity/item-menu-cleanup
Begin item_menu.c cleanup
Diffstat (limited to 'src/script_menu.c')
-rw-r--r-- | src/script_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script_menu.c b/src/script_menu.c index 9ff63e357..2b135e301 100644 --- a/src/script_menu.c +++ b/src/script_menu.c @@ -110,7 +110,7 @@ static void DrawMultichoiceMenu(u8 left, u8 top, u8 multichoiceId, bool8 ignoreB SetStandardWindowBorderStyle(windowId, 0); PrintMenuTable(windowId, count, actions); InitMenuInUpperLeftCornerPlaySoundWhenAPressed(windowId, count, cursorPos); - schedule_bg_copy_tilemap_to_vram(0); + ScheduleBgCopyTilemapToVram(0); InitMultichoiceCheckWrap(ignoreBPress, count, windowId, multichoiceId); } @@ -595,7 +595,7 @@ bool8 ScriptMenu_ShowPokemonPic(u16 species, u8 x, u8 y) gSprites[spriteId].callback = SpriteCallbackDummy; gSprites[spriteId].oam.priority = 0; SetStandardWindowBorderStyle(gTasks[taskId].tWindowId, 1); - schedule_bg_copy_tilemap_to_vram(0); + ScheduleBgCopyTilemapToVram(0); return TRUE; } } |