Home | History | Annotate | Download | only in recovery

Lines Matching full:menu_sel

84 static int menu_top = 0, menu_items = 0, menu_sel = 0;
165 gr_fill(0, (menu_top+menu_sel) * CHAR_HEIGHT,
166 gr_fb_width(), (menu_top+menu_sel+1)*CHAR_HEIGHT+1);
169 if (i == menu_top + menu_sel) {
445 menu_sel = 0;
455 old_sel = menu_sel;
456 menu_sel = sel;
457 if (menu_sel < 0) menu_sel = 0;
458 if (menu_sel >= menu_items) menu_sel = menu_items-1;
459 sel = menu_sel;
460 if (menu_sel != old_sel) update_screen_locked();