summaryrefslogtreecommitdiff
path: root/src/buy_menu_helpers.c
diff options
context:
space:
mode:
authorjiangzhengwenjz <jiangzhengwenjzw@qq.com>2019-07-09 14:07:19 +0800
committerjiangzhengwenjz <jiangzhengwenjzw@qq.com>2019-07-13 05:26:18 +0800
commite0e81c5fbe6a0c0bdcbb5a1de5e16dfb1ffdc091 (patch)
treeb0805ce04611816310a9fbbd5784ab7741aab6e3 /src/buy_menu_helpers.c
parent09b94d8b342bb29f962bb3c23fb4267877df710e (diff)
finished menu (1 failed attempt)
Diffstat (limited to 'src/buy_menu_helpers.c')
-rw-r--r--src/buy_menu_helpers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buy_menu_helpers.c b/src/buy_menu_helpers.c
index 4febb8209..4cdf90e4e 100644
--- a/src/buy_menu_helpers.c
+++ b/src/buy_menu_helpers.c
@@ -202,12 +202,12 @@ void BuyMenuDisplayMessage(u8 taskId, const u8 *text, TaskFunc callback)
void BuyMenuQuantityBoxNormalBorder(u8 windowId, bool8 copyToVram)
{
- SetWindowBorderStyle(windowId, copyToVram, 0x1, 0xD);
+ DrawStdFrameWithCustomTileAndPalette(windowId, copyToVram, 0x1, 0xD);
}
void BuyMenuQuantityBoxThinBorder(u8 windowId, bool8 copyToVram)
{
- SetWindowBorderStyle(windowId, copyToVram, 0xA, 0xF);
+ DrawStdFrameWithCustomTileAndPalette(windowId, copyToVram, 0xA, 0xF);
}
void BuyMenuConfirmPurchase(u8 taskId, const struct YesNoFuncTable *yesNo)