Merge pull request #11005 from t895/cover-only

Android: Add option to disable game cover text
This commit is contained in:
JosJuice
2022-08-23 18:24:51 +02:00
committed by GitHub
9 changed files with 106 additions and 16 deletions

View File

@ -39,10 +39,10 @@ bool IsSettingSaveable(const Config::Location& config_location)
// TODO: Kill the current Android controller mappings system
if (config_location.section == "Android")
{
static constexpr std::array<const char*, 10> android_setting_saveable = {
"ControlScale", "ControlOpacity", "EmulationOrientation", "JoystickRelCenter",
"LastPlatformTab", "MotionControls", "PhoneRumble", "ShowInputOverlay",
"IRMode", "IRAlwaysRecenter"};
static constexpr std::array<const char*, 11> android_setting_saveable = {
"ControlScale", "ControlOpacity", "EmulationOrientation", "JoystickRelCenter",
"LastPlatformTab", "MotionControls", "PhoneRumble", "ShowInputOverlay",
"IRMode", "IRAlwaysRecenter", "ShowGameTitles"};
return std::any_of(
android_setting_saveable.cbegin(), android_setting_saveable.cend(),