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 }