From f57bc1d48e9038e25bd1417fd74fc1d042d06afb Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Fri, 27 May 2016 23:00:38 -0400 Subject: [PATCH] More menu stuff --- source/menu.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/menu.c b/source/menu.c index 9f29b2f..011b376 100644 --- a/source/menu.c +++ b/source/menu.c @@ -41,8 +41,8 @@ static struct options_s options[] = { { 0, "Options", not_option, 0, 0 }, { OPTION_AUTOBOOT, "Autoboot", boolean_val, 0, 0 }, - { OPTION_SILENCE, "Silent autoboot", boolean_val, 0, 0 }, - { OPTION_TRACE, "Debug pausing during operations", boolean_val, 0, 0 }, + { OPTION_SILENCE, " Stealth mode", boolean_val, 0, 0 }, + { OPTION_TRACE, "Debug pauses during operation", boolean_val, 0, 0 }, { OPTION_TRANSP_BG, "Black -> transparent", boolean_val, 0, 0 }, { OPTION_NO_CLEAR_BG, "Preserve framebuffer", boolean_val, 0, 0 }, @@ -359,6 +359,7 @@ menu_handler() to_menu = menu_main(); break; case MENU_OPTIONS: + cursor_y = cursor_min; // Fixup positions to_menu = menu_options(); break; case MENU_PATCHES: -- 2.39.5