mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
$ec = "▷"
This commit is contained in:
parent
76b882d952
commit
84abdb0237
|
@ -222,9 +222,9 @@ LinkMenu:
|
||||||
ld a, START_TRANSFER_INTERNAL_CLOCK
|
ld a, START_TRANSFER_INTERNAL_CLOCK
|
||||||
ldh [rSC], a
|
ldh [rSC], a
|
||||||
.skipStartingTransfer
|
.skipStartingTransfer
|
||||||
ld b, $7f
|
ld b, " "
|
||||||
ld c, $7f
|
ld c, " "
|
||||||
ld d, $ec
|
ld d, "▷"
|
||||||
ld a, [wLinkMenuSelectionSendBuffer]
|
ld a, [wLinkMenuSelectionSendBuffer]
|
||||||
and (B_BUTTON << 2) ; was B button pressed?
|
and (B_BUTTON << 2) ; was B button pressed?
|
||||||
jr nz, .updateCursorPosition
|
jr nz, .updateCursorPosition
|
||||||
|
@ -670,7 +670,7 @@ SetCursorPositionsFromOptions:
|
||||||
ld e, a
|
ld e, a
|
||||||
ld d, 0
|
ld d, 0
|
||||||
add hl, de
|
add hl, de
|
||||||
ld [hl], $ec ; unfilled right arrow menu cursor
|
ld [hl], "▷"
|
||||||
ret
|
ret
|
||||||
|
|
||||||
; table that indicates how the 3 text speed options affect frame delays
|
; table that indicates how the 3 text speed options affect frame delays
|
||||||
|
|
|
@ -504,7 +504,7 @@ PrintListMenuEntries::
|
||||||
cp c ; is it this item?
|
cp c ; is it this item?
|
||||||
jr nz, .nextListEntry
|
jr nz, .nextListEntry
|
||||||
dec hl
|
dec hl
|
||||||
ld a, $ec ; unfilled right arrow menu cursor to indicate an item being swapped
|
ld a, "▷"
|
||||||
ld [hli], a
|
ld [hli], a
|
||||||
.nextListEntry
|
.nextListEntry
|
||||||
ld bc, 2 * SCREEN_WIDTH ; 2 rows
|
ld bc, 2 * SCREEN_WIDTH ; 2 rows
|
||||||
|
|
|
@ -201,7 +201,7 @@ PlaceUnfilledArrowMenuCursor::
|
||||||
ld l, a
|
ld l, a
|
||||||
ld a, [wMenuCursorLocation + 1]
|
ld a, [wMenuCursorLocation + 1]
|
||||||
ld h, a
|
ld h, a
|
||||||
ld [hl], $ec ; outline of right arrow
|
ld [hl], "▷"
|
||||||
ld a, b
|
ld a, b
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
|
|
@ -117,8 +117,8 @@ WalkToLance_RLEList:
|
||||||
db -1 ; end
|
db -1 ; end
|
||||||
|
|
||||||
LanceScript3:
|
LanceScript3:
|
||||||
ld a, [wSimulatedJoypadStatesIndex]
|
ld a, [wSimulatedJoypadStatesIndex]
|
||||||
and a
|
and a
|
||||||
ret nz
|
ret nz
|
||||||
call Delay3
|
call Delay3
|
||||||
xor a
|
xor a
|
||||||
|
|
Loading…
Reference in a new issue