diff options
Diffstat (limited to '')
| -rw-r--r-- | src/common/settings.cpp | 2 | ||||
| -rw-r--r-- | src/common/settings.h | 2 | ||||
| -rw-r--r-- | src/yuzu/configuration/config.cpp | 4 | ||||
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 4 | ||||
| -rw-r--r-- | src/yuzu_cmd/default_ini.h | 5 |
5 files changed, 0 insertions, 17 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 69f0bd8c0..9dd5e3efb 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp | |||
| @@ -69,8 +69,6 @@ void LogSettings() { | |||
| 69 | log_path("DataStorage_NANDDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::NANDDir)); | 69 | log_path("DataStorage_NANDDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::NANDDir)); |
| 70 | log_path("DataStorage_SDMCDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::SDMCDir)); | 70 | log_path("DataStorage_SDMCDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::SDMCDir)); |
| 71 | log_setting("Debugging_ProgramArgs", values.program_args.GetValue()); | 71 | log_setting("Debugging_ProgramArgs", values.program_args.GetValue()); |
| 72 | log_setting("Services_BCATBackend", values.bcat_backend.GetValue()); | ||
| 73 | log_setting("Services_BCATBoxcatLocal", values.bcat_boxcat_local.GetValue()); | ||
| 74 | log_setting("Input_EnableMotion", values.motion_enabled.GetValue()); | 72 | log_setting("Input_EnableMotion", values.motion_enabled.GetValue()); |
| 75 | log_setting("Input_EnableVibration", values.vibration_enabled.GetValue()); | 73 | log_setting("Input_EnableVibration", values.vibration_enabled.GetValue()); |
| 76 | log_setting("Input_EnableRawInput", values.enable_raw_input.GetValue()); | 74 | log_setting("Input_EnableRawInput", values.enable_raw_input.GetValue()); |
diff --git a/src/common/settings.h b/src/common/settings.h index c53d5acc3..402339443 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -568,8 +568,6 @@ struct Values { | |||
| 568 | BasicSetting<bool> use_dev_keys{false, "use_dev_keys"}; | 568 | BasicSetting<bool> use_dev_keys{false, "use_dev_keys"}; |
| 569 | 569 | ||
| 570 | // Network | 570 | // Network |
| 571 | BasicSetting<std::string> bcat_backend{"none", "bcat_backend"}; | ||
| 572 | BasicSetting<bool> bcat_boxcat_local{false, "bcat_boxcat_local"}; | ||
| 573 | BasicSetting<std::string> network_interface{std::string(), "network_interface"}; | 571 | BasicSetting<std::string> network_interface{std::string(), "network_interface"}; |
| 574 | 572 | ||
| 575 | // WebService | 573 | // WebService |
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index b5796a8fc..eb941ce02 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp | |||
| @@ -709,8 +709,6 @@ void Config::ReadDebuggingValues() { | |||
| 709 | 709 | ||
| 710 | void Config::ReadServiceValues() { | 710 | void Config::ReadServiceValues() { |
| 711 | qt_config->beginGroup(QStringLiteral("Services")); | 711 | qt_config->beginGroup(QStringLiteral("Services")); |
| 712 | ReadBasicSetting(Settings::values.bcat_backend); | ||
| 713 | ReadBasicSetting(Settings::values.bcat_boxcat_local); | ||
| 714 | ReadBasicSetting(Settings::values.network_interface); | 712 | ReadBasicSetting(Settings::values.network_interface); |
| 715 | qt_config->endGroup(); | 713 | qt_config->endGroup(); |
| 716 | } | 714 | } |
| @@ -1269,8 +1267,6 @@ void Config::SaveDebuggingValues() { | |||
| 1269 | void Config::SaveNetworkValues() { | 1267 | void Config::SaveNetworkValues() { |
| 1270 | qt_config->beginGroup(QStringLiteral("Services")); | 1268 | qt_config->beginGroup(QStringLiteral("Services")); |
| 1271 | 1269 | ||
| 1272 | WriteBasicSetting(Settings::values.bcat_backend); | ||
| 1273 | WriteBasicSetting(Settings::values.bcat_boxcat_local); | ||
| 1274 | WriteBasicSetting(Settings::values.network_interface); | 1270 | WriteBasicSetting(Settings::values.network_interface); |
| 1275 | 1271 | ||
| 1276 | qt_config->endGroup(); | 1272 | qt_config->endGroup(); |
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index d74eb7e2b..434518d53 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -518,10 +518,6 @@ void Config::ReadValues() { | |||
| 518 | ReadSetting("WebService", Settings::values.web_api_url); | 518 | ReadSetting("WebService", Settings::values.web_api_url); |
| 519 | ReadSetting("WebService", Settings::values.yuzu_username); | 519 | ReadSetting("WebService", Settings::values.yuzu_username); |
| 520 | ReadSetting("WebService", Settings::values.yuzu_token); | 520 | ReadSetting("WebService", Settings::values.yuzu_token); |
| 521 | |||
| 522 | // Services | ||
| 523 | ReadSetting("Services", Settings::values.bcat_backend); | ||
| 524 | ReadSetting("Services", Settings::values.bcat_boxcat_local); | ||
| 525 | } | 521 | } |
| 526 | 522 | ||
| 527 | void Config::Reload() { | 523 | void Config::Reload() { |
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h index 72f3213fb..8119a50d8 100644 --- a/src/yuzu_cmd/default_ini.h +++ b/src/yuzu_cmd/default_ini.h | |||
| @@ -428,11 +428,6 @@ web_api_url = https://api.yuzu-emu.org | |||
| 428 | yuzu_username = | 428 | yuzu_username = |
| 429 | yuzu_token = | 429 | yuzu_token = |
| 430 | 430 | ||
| 431 | [Services] | ||
| 432 | # The name of the backend to use for BCAT | ||
| 433 | # If this is set to 'boxcat' boxcat will be used, otherwise a null implementation will be used | ||
| 434 | bcat_backend = | ||
| 435 | |||
| 436 | [AddOns] | 431 | [AddOns] |
| 437 | # Used to disable add-ons | 432 | # Used to disable add-ons |
| 438 | # List of title IDs of games that will have add-ons disabled (separated by '|'): | 433 | # List of title IDs of games that will have add-ons disabled (separated by '|'): |