From ff4b7ca7f45a92900e82eb92775752ee1cf20b11 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 19 Oct 2020 17:55:13 +0200 Subject: [PATCH] Remove Android-specific settings from UISettings.cpp They are unused, since there is no C++ code that touches these settings. See the discussion in PR 9152, which is a PR that adds a lot more Android-specific settings. --- Source/Core/Core/Config/UISettings.cpp | 5 ----- Source/Core/Core/Config/UISettings.h | 5 ----- 2 files changed, 10 deletions(-) diff --git a/Source/Core/Core/Config/UISettings.cpp b/Source/Core/Core/Config/UISettings.cpp index d8f7a1bb85..ad4ffdff72 100644 --- a/Source/Core/Core/Config/UISettings.cpp +++ b/Source/Core/Core/Config/UISettings.cpp @@ -17,9 +17,4 @@ const Info MAIN_USE_GAME_COVERS{{System::Main, "General", "UseGameCovers"} const Info MAIN_FOCUSED_HOTKEYS{{System::Main, "General", "HotkeysRequireFocus"}, true}; const Info MAIN_RECURSIVE_ISO_PATHS{{System::Main, "General", "RecursiveISOPaths"}, false}; -// UI.Android - -const Info MAIN_LAST_PLATFORM_TAB{{System::Main, "Android", "LastPlatformTab"}, 0}; -const Info MAIN_EMULATION_ORIENTATION{{System::Main, "Android", "EmulationOrientation"}, 0}; - } // namespace Config diff --git a/Source/Core/Core/Config/UISettings.h b/Source/Core/Core/Config/UISettings.h index 890f37c144..5ef81edb79 100644 --- a/Source/Core/Core/Config/UISettings.h +++ b/Source/Core/Core/Config/UISettings.h @@ -21,9 +21,4 @@ extern const Info MAIN_USE_GAME_COVERS; extern const Info MAIN_FOCUSED_HOTKEYS; extern const Info MAIN_RECURSIVE_ISO_PATHS; -// UI.Android - -extern const Info MAIN_LAST_PLATFORM_TAB; -extern const Info MAIN_EMULATION_ORIENTATION; - } // namespace Config