diff options
Diffstat (limited to 'engine/items/mart.asm')
-rw-r--r-- | engine/items/mart.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/items/mart.asm b/engine/items/mart.asm index a0773df4a..b8c32c203 100644 --- a/engine/items/mart.asm +++ b/engine/items/mart.asm @@ -498,7 +498,7 @@ BuyMenuLoop: ret StandardMartAskPurchaseQuantity: - ld a, 99 + ld a, MAX_ITEM_STACK ld [wItemQuantityBuffer], a ld a, MARTTEXT_HOW_MANY call LoadBuyMenuText @@ -557,7 +557,7 @@ RooftopSaleAskPurchaseQuantity: ld a, MARTTEXT_HOW_MANY call LoadBuyMenuText call .GetSalePrice - ld a, 99 + ld a, MAX_ITEM_STACK ld [wItemQuantityBuffer], a farcall RooftopSale_SelectQuantityToBuy call ExitMenu |