From a29fe3f46ed37c90cd372968de809621b3f54f51 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Mon, 18 Feb 2019 09:14:05 -0800 Subject: [PATCH] Core: Remove some now unused variables. From removed settings. --- Core/Config.cpp | 4 ---- UI/GameSettingsScreen.h | 3 +-- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Core/Config.cpp b/Core/Config.cpp index 4c366e5a07a9..fc2026c9bc4c 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -505,10 +505,6 @@ static int DefaultZoomType() { return (int)SmallDisplayZoom::AUTO; } -static bool DefaultTimerHack() { - return false; -} - static int DefaultAndroidHwScale() { #ifdef __ANDROID__ if (System_GetPropertyInt(SYSPROP_SYSTEMVERSION) >= 19 || System_GetPropertyInt(SYSPROP_DEVICE_TYPE) == DEVICE_TYPE_TV) { diff --git a/UI/GameSettingsScreen.h b/UI/GameSettingsScreen.h index 78619558ac78..718f98d70d6a 100644 --- a/UI/GameSettingsScreen.h +++ b/UI/GameSettingsScreen.h @@ -106,8 +106,7 @@ class GameSettingsScreen : public UIDialogScreenWithGameBackground { UI::EventReturn OnSavedataManager(UI::EventParams &e); UI::EventReturn OnSysInfo(UI::EventParams &e); - // Temporaries to convert bools to int settings - bool cap60FPS_; + // Temporaries to convert setting types. int iAlternateSpeedPercent1_; int iAlternateSpeedPercent2_; bool enableReports_;