diff options
author | fearlessTobi <thm.frey@gmail.com> | 2019-03-28 23:01:52 +0100 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2019-03-29 15:02:28 +0100 |
commit | ff7e6a42c1063a9783c1cf88a144577616c2ca86 (patch) | |
tree | c7b3c522750d203993bd3c92f77dcf7b1d6b8254 /src/yuzu_cmd/config.cpp | |
parent | 47f2405ab19f7bab9a1de6b6c8ccd9063cf0bd11 (diff) |
core/yuzu: Remove enable_nfc setting
This was initially added to prevent problems from stubbed/not implemented NFC services, but as we never encountered such and as it's only used in a deprecated function anyway, I guess we can just remove it to prevent more clutter of the settings.
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
-rw-r--r-- | src/yuzu_cmd/config.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 32e78049c..f24cc77fe 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp @@ -319,7 +319,6 @@ void Config::ReadValues() { // System Settings::values.use_docked_mode = sdl2_config->GetBoolean("System", "use_docked_mode", false); - Settings::values.enable_nfc = sdl2_config->GetBoolean("System", "enable_nfc", true); const auto size = sdl2_config->GetInteger("System", "users_size", 0); Settings::values.current_user = std::clamp<int>( |