diff options
| author | klektron <klektron@users.noreply.github.com> | 2020-12-31 20:27:09 +0100 |
|---|---|---|
| committer | klektron <klektron@users.noreply.github.com> | 2020-12-31 20:27:09 +0100 |
| commit | 36d4d6fe0aeeb60b5137b812b779fa82b05b4a5a (patch) | |
| tree | 213b9771f884b4c3f5f6f3436b2e9c20a7989dd7 /home | |
| parent | 4bd566bbb14ba293e23ec8c21ee1a7541d9f975a (diff) | |
aaaand more fixes
Diffstat (limited to 'home')
| -rw-r--r-- | home/audio.asm | 2 | ||||
| -rw-r--r-- | home/list_menu.asm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/home/audio.asm b/home/audio.asm index eded85e9..e1951fd5 100644 --- a/home/audio.asm +++ b/home/audio.asm @@ -185,7 +185,7 @@ PlaySound:: jr nz, .audio3 ; audio 2 ld a, b - call Audio2_PlaySound + call $603A ; TODO Audio2_PlaySound?? jr .next2 .audio3 diff --git a/home/list_menu.asm b/home/list_menu.asm index 66650225..7ceac460 100644 --- a/home/list_menu.asm +++ b/home/list_menu.asm @@ -295,7 +295,7 @@ DisplayChooseQuantityMenu:: ld de, SpacesBetweenQuantityAndPriceText call PlaceString ld de, hMoney ; total price - ld c, $a3 + ld c, $83 call PrintBCDNumber hlcoord 9, 10 .printQuantity @@ -420,7 +420,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], "¥" .skipPrintingItemPrice |
