mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-19 14:32:19 +00:00
config_locale: revised some descriptions
This commit is contained in:
parent
59551d8875
commit
38c275632b
2 changed files with 6 additions and 25 deletions
|
|
@ -91,7 +91,7 @@ CONFIG_DEFINE_LOCALE(ControlTutorial)
|
|||
|
||||
CONFIG_DEFINE_LOCALE(AchievementNotifications)
|
||||
{
|
||||
{ ELanguage::English, { "Achievement Notifications", "Show notifications for unlocking achievements.\n\nAchievements will still be rewarded with notifications disabled." } }
|
||||
{ ELanguage::English, { "Achievement Notifications", "Show notifications for unlocking achievements.\n\nAchievements will still\nbe rewarded with notifications disabled." } }
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_LOCALE(SaveScoreAtCheckpoints)
|
||||
|
|
@ -246,7 +246,7 @@ CONFIG_DEFINE_LOCALE(Fullscreen)
|
|||
|
||||
CONFIG_DEFINE_LOCALE(VSync)
|
||||
{
|
||||
{ ELanguage::English, { "V-Sync", "Synchronize the game to the refresh rate of the display to prevent screen tearing." } }
|
||||
{ ELanguage::English, { "V-Sync", "Synchronize the game\nto the refresh rate of\nthe display to prevent screen tearing." } }
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_LOCALE(FPS)
|
||||
|
|
@ -281,7 +281,7 @@ CONFIG_DEFINE_LOCALE(TransparencyAntiAliasing)
|
|||
|
||||
CONFIG_DEFINE_LOCALE(ShadowResolution)
|
||||
{
|
||||
{ ELanguage::English, { "Shadow Resolution", "Set the quality level of real-time shadows." } }
|
||||
{ ELanguage::English, { "Shadow Resolution", "Set the resolution of real-time shadows." } }
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_ENUM_LOCALE(EShadowResolution)
|
||||
|
|
@ -312,28 +312,9 @@ CONFIG_DEFINE_ENUM_LOCALE(EGITextureFiltering)
|
|||
}
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_LOCALE(DepthOfFieldQuality)
|
||||
{
|
||||
{ ELanguage::English, { "Depth of Field Quality", "[PLACEHOLDER]" } }
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_ENUM_LOCALE(EDepthOfFieldQuality)
|
||||
{
|
||||
{
|
||||
ELanguage::English,
|
||||
{
|
||||
{ EDepthOfFieldQuality::Auto, { "AUTO", "" } },
|
||||
{ EDepthOfFieldQuality::Low, { "LOW", "" } },
|
||||
{ EDepthOfFieldQuality::Medium, { "MEDIUM", "" } },
|
||||
{ EDepthOfFieldQuality::High, { "HIGH", "" } },
|
||||
{ EDepthOfFieldQuality::Ultra, { "ULTRA", "" } },
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_LOCALE(MotionBlur)
|
||||
{
|
||||
{ ELanguage::English, { "Motion Blur", "Use per-object motion blur and radial blur." } }
|
||||
{ ELanguage::English, { "Motion Blur", "Change the quality of the motion blur." } }
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_ENUM_LOCALE(EMotionBlur)
|
||||
|
|
@ -343,7 +324,7 @@ CONFIG_DEFINE_ENUM_LOCALE(EMotionBlur)
|
|||
{
|
||||
{ EMotionBlur::Off, { "OFF", "" } },
|
||||
{ EMotionBlur::Original, { "ORIGINAL", "" } },
|
||||
{ EMotionBlur::Enhanced, { "ENHANCED", "" } }
|
||||
{ EMotionBlur::Enhanced, { "ENHANCED", "Enhanced: uses more samples for smoother motion blur at the cost\nof performance." } }
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ public:
|
|||
CONFIG_DEFINE("Video", size_t, AnisotropicFiltering, 16);
|
||||
CONFIG_DEFINE_ENUM_LOCALISED("Video", EShadowResolution, ShadowResolution, EShadowResolution::x4096);
|
||||
CONFIG_DEFINE_ENUM_LOCALISED("Video", EGITextureFiltering, GITextureFiltering, EGITextureFiltering::Bicubic);
|
||||
CONFIG_DEFINE_ENUM_LOCALISED("Video", EDepthOfFieldQuality, DepthOfFieldQuality, EDepthOfFieldQuality::Auto);
|
||||
CONFIG_DEFINE_ENUM("Video", EDepthOfFieldQuality, DepthOfFieldQuality, EDepthOfFieldQuality::Auto);
|
||||
CONFIG_DEFINE_ENUM_LOCALISED("Video", EMotionBlur, MotionBlur, EMotionBlur::Original);
|
||||
CONFIG_DEFINE_LOCALISED("Video", bool, XboxColourCorrection, false);
|
||||
CONFIG_DEFINE_ENUM_LOCALISED("Video", EMovieScaleMode, MovieScaleMode, EMovieScaleMode::Fit);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue