From 808bc60cb1773ac3dbec830ef30e194b207ab70a Mon Sep 17 00:00:00 2001 From: Ross Gouldthorpe Date: Wed, 11 Dec 2024 22:16:25 +0000 Subject: [PATCH] Tidy up Fixing white space and some small renames --- src/menu/ui_components/tabs.c | 2 +- src/menu/views/browser.c | 4 ++-- src/menu/views/load_rom.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/menu/ui_components/tabs.c b/src/menu/ui_components/tabs.c index 7f025eb0..ac5e3865 100644 --- a/src/menu/ui_components/tabs.c +++ b/src/menu/ui_components/tabs.c @@ -4,7 +4,7 @@ static const char* tabs[3] = { - "Browser", + "Files", "History", "Favorites" }; diff --git a/src/menu/views/browser.c b/src/menu/views/browser.c index 49f2d887..3e64e901 100644 --- a/src/menu/views/browser.c +++ b/src/menu/views/browser.c @@ -370,7 +370,7 @@ static void draw (menu_t *menu, surface_t *d) { 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); @@ -418,7 +418,7 @@ static void draw (menu_t *menu, surface_t *d) { "\n" "" ); - } + } diff --git a/src/menu/views/load_rom.c b/src/menu/views/load_rom.c index 2315073d..545e17e4 100644 --- a/src/menu/views/load_rom.c +++ b/src/menu/views/load_rom.c @@ -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 TV Type", .submenu = &set_tv_type_context_menu }, { .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, }}; @@ -279,7 +279,7 @@ static void draw (menu_t *menu, surface_t *d) { ALIGN_RIGHT, VALIGN_TOP, "L|Z: Extra Info\n" "R: Options" - ); + ); if (boxart != NULL) { ui_components_boxart_draw(boxart);