$ec = "▷"

This commit is contained in:
Rangi 2020-07-16 12:48:42 -04:00
parent 76b882d952
commit 84abdb0237
4 changed files with 8 additions and 8 deletions

View file

@ -222,9 +222,9 @@ LinkMenu:
ld a, START_TRANSFER_INTERNAL_CLOCK
ldh [rSC], a
.skipStartingTransfer
ld b, $7f
ld c, $7f
ld d, $ec
ld b, " "
ld c, " "
ld d, "▷"
ld a, [wLinkMenuSelectionSendBuffer]
and (B_BUTTON << 2) ; was B button pressed?
jr nz, .updateCursorPosition
@ -670,7 +670,7 @@ SetCursorPositionsFromOptions:
ld e, a
ld d, 0
add hl, de
ld [hl], $ec ; unfilled right arrow menu cursor
ld [hl], "▷"
ret
; table that indicates how the 3 text speed options affect frame delays

View file

@ -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

View file

@ -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