This commit is contained in:
Kartik K. Agaram 2021-08-13 09:55:23 -07:00
parent c746b06c3a
commit bb99077318
1 changed files with 6 additions and 6 deletions

View File

@ -144,14 +144,14 @@ fn render-menu screen: (addr screen) {
set-cursor-position screen, 2/x, y
draw-text-rightward-from-cursor screen, " / ", width, 0/fg 0xf/bg
draw-text-rightward-from-cursor screen, " search ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " ^f ", width, 0/fg 0xf/bg
draw-text-rightward-from-cursor screen, " next page ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " ^b ", width, 0/fg 0xf/bg
draw-text-rightward-from-cursor screen, " previous page ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " ^n ", width, 0/fg 0xf/bg
draw-text-rightward-from-cursor screen, " next item ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " << previous page ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " ^p ", width, 0/fg 0xf/bg
draw-text-rightward-from-cursor screen, " previous item ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " < previous item ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " ^n ", width, 0/fg 0xf/bg
draw-text-rightward-from-cursor screen, " next item > ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " ^f ", width, 0/fg 0xf/bg
draw-text-rightward-from-cursor screen, " next page >> ", width, 0xf/fg, 0/bg
}
fn render-item screen: (addr screen), _item: (addr item), _users: (addr array user), y: int, screen-height: int -> _/ecx: int {