This commit is contained in:
Kartik K. Agaram 2021-08-13 06:27:09 -07:00
parent b6580e0b14
commit 4e3703de21
1 changed files with 2 additions and 2 deletions

View File

@ -110,9 +110,9 @@ fn render-menu screen: (addr screen) {
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 (older) item ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " next item ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " ^p ", width, 0/fg 0xf/bg
draw-text-rightward-from-cursor screen, " previous (more recent) item ", width, 0xf/fg, 0/bg
draw-text-rightward-from-cursor screen, " previous item ", 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 {