Home
last modified time | relevance | path

Searched refs:menu_sel (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/
Dscreen_ui.cpp71 menu_sel(0), in ScreenRecoveryUI()
215 gr_fill(0, (menu_top+menu_sel) * CHAR_HEIGHT, in draw_screen_locked()
216 gr_fb_width(), (menu_top+menu_sel+1)*CHAR_HEIGHT+1); in draw_screen_locked()
219 if (i == menu_top + menu_sel) { in draw_screen_locked()
513 menu_sel = initial_selection; in StartMenu()
523 old_sel = menu_sel; in SelectMenu()
524 menu_sel = sel; in SelectMenu()
525 if (menu_sel < 0) menu_sel = 0; in SelectMenu()
526 if (menu_sel >= menu_items) menu_sel = menu_items-1; in SelectMenu()
527 sel = menu_sel; in SelectMenu()
[all …]
Dscreen_ui.h90 int menu_top, menu_items, menu_sel; variable