From 97bc5d199968ab556abac221d1100036b325f47e Mon Sep 17 00:00:00 2001 From: Skyth <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Thu, 9 Jan 2025 13:53:22 +0300 Subject: [PATCH] Remove stretch option. --- UnleashedRecomp/locale/config_locale.cpp | 1 - UnleashedRecomp/user/config.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/UnleashedRecomp/locale/config_locale.cpp b/UnleashedRecomp/locale/config_locale.cpp index 03a3699b..cb823eb3 100644 --- a/UnleashedRecomp/locale/config_locale.cpp +++ b/UnleashedRecomp/locale/config_locale.cpp @@ -304,7 +304,6 @@ CONFIG_DEFINE_ENUM_LOCALE(EUIScaleMode) { ELanguage::English, { - { EUIScaleMode::Stretch, { "STRETCH", "Stretch: the UI will stretch to the display." } }, { EUIScaleMode::Edge, { "EDGE", "Edge: the UI will anchor to the edges of the display." } }, { EUIScaleMode::Centre, { "CENTER", "Center: the UI will anchor to the center of the display." } }, } diff --git a/UnleashedRecomp/user/config.h b/UnleashedRecomp/user/config.h index 873f3d42..9c8c7ded 100644 --- a/UnleashedRecomp/user/config.h +++ b/UnleashedRecomp/user/config.h @@ -260,14 +260,12 @@ CONFIG_DEFINE_ENUM_TEMPLATE(EMotionBlur) enum class EUIScaleMode : uint32_t { - Stretch, Edge, Centre }; CONFIG_DEFINE_ENUM_TEMPLATE(EUIScaleMode) { - { "Stretch", EUIScaleMode::Stretch }, { "Edge", EUIScaleMode::Edge }, { "Centre", EUIScaleMode::Centre }, { "Center", EUIScaleMode::Centre }