diff options
| author | 2023-08-02 12:21:43 -0400 | |
|---|---|---|
| committer | 2023-08-02 12:21:43 -0400 | |
| commit | 32b4d63a5bdc838c26582235b9bf16bde300a760 (patch) | |
| tree | f0542ddd9d92c07ee4324cfb40e3a615ba57f630 /src | |
| parent | config(qt): Use qt_config directly to read config (diff) | |
| download | yuzu-32b4d63a5bdc838c26582235b9bf16bde300a760.tar.gz yuzu-32b4d63a5bdc838c26582235b9bf16bde300a760.tar.xz yuzu-32b4d63a5bdc838c26582235b9bf16bde300a760.zip | |
config(qt): Fix name of network category
Turns out the network interface is in the Services category. Can't wait
get rid of this whole config.
Addresses yuzu-emu/yuzu/issues/11205
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/configuration/config.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index 01310733d..b2405f9b8 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp | |||
| @@ -727,8 +727,7 @@ void Config::ReadMultiplayerValues() { | |||
| 727 | } | 727 | } |
| 728 | 728 | ||
| 729 | void Config::ReadNetworkValues() { | 729 | void Config::ReadNetworkValues() { |
| 730 | qt_config->beginGroup( | 730 | qt_config->beginGroup(QString::fromStdString("Services")); |
| 731 | QString::fromUtf8(Settings::TranslateCategory(Settings::Category::Network))); | ||
| 732 | 731 | ||
| 733 | ReadCategory(Settings::Category::Network); | 732 | ReadCategory(Settings::Category::Network); |
| 734 | 733 | ||