From 4c67d1f9350dc6afee2f091a61cf278faa052adb Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 18 Sep 2022 12:14:43 +0200 Subject: [PATCH] Update the config description to better describe what they are actually doing --- README.md | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 37a48a4..0040bf5 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Via the plugin config menu (press L, DPAD Down and Minus on the gamepad) you can - **Auto detect region/language**: Enables/Disables the auto detection of the region/language. When you disable it, you need/can set the region and language for a title on each title start. Enabled by default. - **Force auto detection for in-region titles**: Force auto detection when starting a title of your region, even if auto detection is disabled. Enabled by default. -- **Prefer system language for in-region titles**: Forces the region and language of your console when starting a title of your region (Ignoring "Default language for XXX"). Enabled by default. +- **Prefer system settings for in-region titles**: Forces the region, country and language of your console when starting a title of your region (Ignoring "Default language for XXX"). Enabled by default. - **Default language for EUR**: Sets the default language for EUR titles. Set to english by default. - **Default language for USA**: Sets the default language for USA titles. Set to english by default. diff --git a/src/main.cpp b/src/main.cpp index af3b063..34ceaaa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -450,7 +450,7 @@ WUPS_GET_CONFIG() { WUPSConfigItemBoolean_AddToCategoryHandled(config, cat, VAL_DEFAULT_LANG_USA, "Auto detect region/language", gAutoDetection, &auto_detection_changed); WUPSConfigItemBoolean_AddToCategoryHandled(config, cat, VAL_SKIP_OWN_REGION, "Force auto detection for in-region titles", gSkipOwnRegion, &skip_own_region_changed); - WUPSConfigItemBoolean_AddToCategoryHandled(config, cat, VAL_PREFER_SYSTEM_SETTINGS, "Prefer system language for in-region titles", gPreferSystemSettings, &prefer_system_changed); + WUPSConfigItemBoolean_AddToCategoryHandled(config, cat, VAL_PREFER_SYSTEM_SETTINGS, "Prefer system settings for in-region titles", gPreferSystemSettings, &prefer_system_changed); std::map eur_lang_map{ {LANG_ENGLISH, "English"},