From 70518762ae34a25cc884d37e49fd4af3b7e3b47b Mon Sep 17 00:00:00 2001 From: ITotalJustice <47043333+ITotalJustice@users.noreply.github.com> Date: Wed, 6 Aug 2025 14:11:59 +0100 Subject: [PATCH] game_menu: remove stubbed option to enable/disable title cache. the option was never actually implemented and there's no benifit to disabling it anyway. --- sphaira/include/ui/menus/game_menu.hpp | 1 - sphaira/source/ui/menus/game_menu.cpp | 4 ---- 2 files changed, 5 deletions(-) diff --git a/sphaira/include/ui/menus/game_menu.hpp b/sphaira/include/ui/menus/game_menu.hpp index af02fc3..46229d1 100644 --- a/sphaira/include/ui/menus/game_menu.hpp +++ b/sphaira/include/ui/menus/game_menu.hpp @@ -102,7 +102,6 @@ private: option::OptionLong m_order{INI_SECTION, "order", OrderType::OrderType_Descending}; option::OptionLong m_layout{INI_SECTION, "layout", LayoutType::LayoutType_Grid}; option::OptionBool m_hide_forwarders{INI_SECTION, "hide_forwarders", false}; - option::OptionBool m_title_cache{INI_SECTION, "title_cache", true}; }; struct NcmMetaData { diff --git a/sphaira/source/ui/menus/game_menu.cpp b/sphaira/source/ui/menus/game_menu.cpp index 54b5843..e8a0a51 100644 --- a/sphaira/source/ui/menus/game_menu.cpp +++ b/sphaira/source/ui/menus/game_menu.cpp @@ -397,10 +397,6 @@ Menu::Menu(u32 flags) : grid::Menu{"Games"_i18n, flags} { ); }); - options->Add("Title cache"_i18n, m_title_cache.Get(), [this](bool& v_out){ - m_title_cache.Set(v_out); - }); - options->Add("Delete title cache"_i18n, [this](){ App::Push( "Are you sure you want to delete the title cache?"_i18n,