From 2168188cb8c5df3153ce5542aa6553768404a992 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Tue, 13 Dec 2022 18:24:59 -0800 Subject: [PATCH] Config: Remove unused values. --- Core/Config.cpp | 4 ---- Core/ConfigValues.h | 7 ------- 2 files changed, 11 deletions(-) diff --git a/Core/Config.cpp b/Core/Config.cpp index 795763c9ab..1e059016de 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -666,10 +666,6 @@ static int DefaultFastForwardMode() { #endif } -static int DefaultZoomType() { - return (int)SmallDisplayZoom::AUTO; -} - static int DefaultAndroidHwScale() { #ifdef __ANDROID__ if (System_GetPropertyInt(SYSPROP_SYSTEMVERSION) >= 19 || System_GetPropertyInt(SYSPROP_DEVICE_TYPE) == DEVICE_TYPE_TV) { diff --git a/Core/ConfigValues.h b/Core/ConfigValues.h index 9018653aab..f8e88be931 100644 --- a/Core/ConfigValues.h +++ b/Core/ConfigValues.h @@ -105,13 +105,6 @@ enum IOTimingMethods { IOTIMING_REALISTIC = 2, }; -enum class SmallDisplayZoom { - STRETCH = 0, - PARTIAL_STRETCH = 1, - AUTO = 2, - MANUAL = 3, -}; - enum class AutoLoadSaveState { OFF = 0, OLDEST = 1,