diff options
author | einstein95 <einstein95@users.noreply.github.com> | 2016-10-07 13:55:17 +1300 |
---|---|---|
committer | einstein95 <einstein95@users.noreply.github.com> | 2016-10-07 13:57:43 +1300 |
commit | e95485a8b0eacac8806c5948079919a271029897 (patch) | |
tree | 9b18d4c9f946d31390685f3185f91a3f35d613d2 /home.asm | |
parent | fe3ea5c3f8cf36ef475fe19924590d8bc1af0952 (diff) |
More fixes, most from iimarckus
Diffstat (limited to 'home.asm')
-rw-r--r-- | home.asm | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1265,14 +1265,14 @@ DisplayPlayerBlackedOutText:: ld a,[wd732] res 5,a ; reset forced to use bike bit ld [wd732],a - ld a,[wd732] + ld a,[wd795] bit 7,a jr z,.didnotblackoutinsafari xor a ld [wNumSafariBalls],a ld [wSafariSteps],a ld [wSafariSteps+1],a - ld [wd732],a + ld [wd795],a ld [wcf0d],a ld [wSafariZoneEntranceCurScript],a .didnotblackoutinsafari @@ -1671,7 +1671,7 @@ DisplayChooseQuantityMenu:: ld de,SpacesBetweenQuantityAndPriceText call PlaceString ld de,hMoney ; total price - ld c,$a3 + ld c,$83 call PrintBCDNumber coord hl, 9, 10 .printQuantity @@ -1796,7 +1796,7 @@ PrintListMenuEntries:: pop hl ld bc, SCREEN_WIDTH + 5 ; 1 row down and 5 columns right add hl,bc - ld c,$a3 ; no leading zeroes, right-aligned, print currency symbol, 3 bytes + ld c,$83 ; no leading zeroes, right-aligned, print currency symbol, 3 bytes call PrintBCDNumber ld [hl], $F0 .skipPrintingItemPrice |