Lines Matching refs:menu_sel
71 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()
528 if (menu_sel != old_sel) update_screen_locked(); in SelectMenu()