diff options
Diffstat (limited to 'screen_ui.h')
-rw-r--r-- | screen_ui.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/screen_ui.h b/screen_ui.h index 62dda7558..8231a2ba0 100644 --- a/screen_ui.h +++ b/screen_ui.h @@ -21,6 +21,7 @@ #include <stdio.h> #include <string> +#include <vector> #include "ui.h" @@ -127,7 +128,7 @@ class ScreenRecoveryUI : public RecoveryUI { bool show_text; bool show_text_ever; // has show_text ever been true? - char** menu_; + std::vector<std::string> menu_; const char* const* menu_headers_; bool show_menu; int menu_items, menu_sel; |