mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-04-28 13:21:42 +00:00
config: remove movie scale mode option
This commit is contained in:
parent
7735f3fcf5
commit
33b5be28d1
4 changed files with 0 additions and 34 deletions
|
|
@ -275,23 +275,6 @@ CONFIG_DEFINE_LOCALE(XboxColorCorrection)
|
||||||
{ ELanguage::English, { "Xbox Color Correction", "Use the warm tint from the Xbox version of the game." } }
|
{ ELanguage::English, { "Xbox Color Correction", "Use the warm tint from the Xbox version of the game." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
CONFIG_DEFINE_LOCALE(MovieScaleMode)
|
|
||||||
{
|
|
||||||
{ ELanguage::English, { "Movie Scale Mode", "Change how the movie player scales to the display." } }
|
|
||||||
};
|
|
||||||
|
|
||||||
CONFIG_DEFINE_ENUM_LOCALE(EMovieScaleMode)
|
|
||||||
{
|
|
||||||
{
|
|
||||||
ELanguage::English,
|
|
||||||
{
|
|
||||||
{ EMovieScaleMode::Stretch, { "STRETCH", "Stretch: the movie will stretch to the display." } },
|
|
||||||
{ EMovieScaleMode::Fit, { "FIT", "Fit: the movie will maintain its aspect ratio and fit to the display." } },
|
|
||||||
{ EMovieScaleMode::Fill, { "FILL", "Fill: the movie will scale past the bounds of the display if it doesn't match the aspect ratio." } },
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
CONFIG_DEFINE_LOCALE(UIScaleMode)
|
CONFIG_DEFINE_LOCALE(UIScaleMode)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "UI Scale Mode", "Change how the UI scales to the display." } }
|
{ ELanguage::English, { "UI Scale Mode", "Change how the UI scales to the display." } }
|
||||||
|
|
|
||||||
|
|
@ -910,7 +910,6 @@ static void DrawConfigOptions()
|
||||||
DrawConfigOption(rowCount++, yOffset, &Config::GITextureFiltering, true);
|
DrawConfigOption(rowCount++, yOffset, &Config::GITextureFiltering, true);
|
||||||
DrawConfigOption(rowCount++, yOffset, &Config::MotionBlur, true);
|
DrawConfigOption(rowCount++, yOffset, &Config::MotionBlur, true);
|
||||||
DrawConfigOption(rowCount++, yOffset, &Config::XboxColorCorrection, true);
|
DrawConfigOption(rowCount++, yOffset, &Config::XboxColorCorrection, true);
|
||||||
DrawConfigOption(rowCount++, yOffset, &Config::MovieScaleMode, true);
|
|
||||||
DrawConfigOption(rowCount++, yOffset, &Config::UIScaleMode, true);
|
DrawConfigOption(rowCount++, yOffset, &Config::UIScaleMode, true);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
|
|
@ -117,7 +117,6 @@ void LoadThumbnails()
|
||||||
g_xboxColorCorrectionThumbnails[false] = LOAD_ZSTD_TEXTURE(g_xbox_color_correction_false);
|
g_xboxColorCorrectionThumbnails[false] = LOAD_ZSTD_TEXTURE(g_xbox_color_correction_false);
|
||||||
g_xboxColorCorrectionThumbnails[true] = LOAD_ZSTD_TEXTURE(g_xbox_color_correction_true);
|
g_xboxColorCorrectionThumbnails[true] = LOAD_ZSTD_TEXTURE(g_xbox_color_correction_true);
|
||||||
|
|
||||||
g_configThumbnails[&Config::MovieScaleMode] = LOAD_ZSTD_TEXTURE(g_movie_scale_mode);
|
|
||||||
g_configThumbnails[&Config::UIScaleMode] = LOAD_ZSTD_TEXTURE(g_ui_scale_mode);
|
g_configThumbnails[&Config::UIScaleMode] = LOAD_ZSTD_TEXTURE(g_ui_scale_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -252,20 +252,6 @@ CONFIG_DEFINE_ENUM_TEMPLATE(EMotionBlur)
|
||||||
{ "Enhanced", EMotionBlur::Enhanced }
|
{ "Enhanced", EMotionBlur::Enhanced }
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class EMovieScaleMode : uint32_t
|
|
||||||
{
|
|
||||||
Stretch,
|
|
||||||
Fit,
|
|
||||||
Fill
|
|
||||||
};
|
|
||||||
|
|
||||||
CONFIG_DEFINE_ENUM_TEMPLATE(EMovieScaleMode)
|
|
||||||
{
|
|
||||||
{ "Stretch", EMovieScaleMode::Stretch },
|
|
||||||
{ "Fit", EMovieScaleMode::Fit },
|
|
||||||
{ "Fill", EMovieScaleMode::Fill }
|
|
||||||
};
|
|
||||||
|
|
||||||
enum class EUIScaleMode : uint32_t
|
enum class EUIScaleMode : uint32_t
|
||||||
{
|
{
|
||||||
Stretch,
|
Stretch,
|
||||||
|
|
@ -662,7 +648,6 @@ public:
|
||||||
CONFIG_DEFINE_ENUM("Video", EDepthOfFieldQuality, DepthOfFieldQuality, EDepthOfFieldQuality::Auto);
|
CONFIG_DEFINE_ENUM("Video", EDepthOfFieldQuality, DepthOfFieldQuality, EDepthOfFieldQuality::Auto);
|
||||||
CONFIG_DEFINE_ENUM_LOCALISED("Video", EMotionBlur, MotionBlur, EMotionBlur::Original);
|
CONFIG_DEFINE_ENUM_LOCALISED("Video", EMotionBlur, MotionBlur, EMotionBlur::Original);
|
||||||
CONFIG_DEFINE_LOCALISED("Video", bool, XboxColorCorrection, false);
|
CONFIG_DEFINE_LOCALISED("Video", bool, XboxColorCorrection, false);
|
||||||
CONFIG_DEFINE_ENUM_LOCALISED("Video", EMovieScaleMode, MovieScaleMode, EMovieScaleMode::Fit);
|
|
||||||
CONFIG_DEFINE_ENUM_LOCALISED("Video", EUIScaleMode, UIScaleMode, EUIScaleMode::Edge);
|
CONFIG_DEFINE_ENUM_LOCALISED("Video", EUIScaleMode, UIScaleMode, EUIScaleMode::Edge);
|
||||||
|
|
||||||
// TODO: remove these once the exports are implemented.
|
// TODO: remove these once the exports are implemented.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue