summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/list_menu.asm2
-rw-r--r--home/window.asm2
2 files changed, 2 insertions, 2 deletions
diff --git a/home/list_menu.asm b/home/list_menu.asm
index ec775331..f8ddeeef 100644
--- a/home/list_menu.asm
+++ b/home/list_menu.asm
@@ -504,7 +504,7 @@ PrintListMenuEntries::
cp c ; is it this item?
jr nz, .nextListEntry
dec hl
- ld a, $ec ; unfilled right arrow menu cursor to indicate an item being swapped
+ ld a, "▷"
ld [hli], a
.nextListEntry
ld bc, 2 * SCREEN_WIDTH ; 2 rows
diff --git a/home/window.asm b/home/window.asm
index 7ba89d88..f86e39c6 100644
--- a/home/window.asm
+++ b/home/window.asm
@@ -201,7 +201,7 @@ PlaceUnfilledArrowMenuCursor::
ld l, a
ld a, [wMenuCursorLocation + 1]
ld h, a
- ld [hl], $ec ; outline of right arrow
+ ld [hl], "▷"
ld a, b
ret