Fixing white space and some small renames
This commit is contained in:
Ross Gouldthorpe 2024-12-11 22:16:25 +00:00
parent 0d00291a23
commit 808bc60cb1
3 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@
static const char* tabs[3] = static const char* tabs[3] =
{ {
"Browser", "Files",
"History", "History",
"Favorites" "Favorites"
}; };

View File

@ -370,7 +370,7 @@ static void draw (menu_t *menu, surface_t *d) {
ui_components_background_draw(); ui_components_background_draw();
ui_components_layout_draw(); ui_components_layout_draw();
ui_components_file_list_draw(menu->browser.list, menu->browser.entries, menu->browser.selected); ui_components_file_list_draw(menu->browser.list, menu->browser.entries, menu->browser.selected);
@ -418,7 +418,7 @@ static void draw (menu_t *menu, surface_t *d) {
"\n" "\n"
"<C Change Tab C>" "<C Change Tab C>"
); );
} }

View File

@ -205,7 +205,7 @@ static component_context_menu_t options_context_menu = { .list = {
{ .text = "Set Save Type", .submenu = &set_save_type_context_menu }, { .text = "Set Save Type", .submenu = &set_save_type_context_menu },
{ .text = "Set TV Type", .submenu = &set_tv_type_context_menu }, { .text = "Set TV Type", .submenu = &set_tv_type_context_menu },
{ .text = "Set ROM to autoload", .action = set_autoload_type }, { .text = "Set ROM to autoload", .action = set_autoload_type },
{ .text = "Add To Favorite", .action = add_favorite }, { .text = "Add to favorite", .action = add_favorite },
COMPONENT_CONTEXT_MENU_LIST_END, COMPONENT_CONTEXT_MENU_LIST_END,
}}; }};
@ -279,7 +279,7 @@ static void draw (menu_t *menu, surface_t *d) {
ALIGN_RIGHT, VALIGN_TOP, ALIGN_RIGHT, VALIGN_TOP,
"L|Z: Extra Info\n" "L|Z: Extra Info\n"
"R: Options" "R: Options"
); );
if (boxart != NULL) { if (boxart != NULL) {
ui_components_boxart_draw(boxart); ui_components_boxart_draw(boxart);