diff options
| author | 2021-08-04 22:05:53 -0400 | |
|---|---|---|
| committer | 2021-08-04 22:05:53 -0400 | |
| commit | edb9c72e263f25dd42d8a2b256089fa5d852d1a7 (patch) | |
| tree | 576319c010c8def9ddfc855c96dbe8e034300996 | |
| parent | nvdec: Implement VA-API hardware video acceleration (#6713) (diff) | |
| parent | config: Read connected setting for controllers (diff) | |
| download | yuzu-edb9c72e263f25dd42d8a2b256089fa5d852d1a7.tar.gz yuzu-edb9c72e263f25dd42d8a2b256089fa5d852d1a7.tar.xz yuzu-edb9c72e263f25dd42d8a2b256089fa5d852d1a7.zip | |
Merge pull request #6816 from lat9nq/fix-mult-contrl
config: Read connected setting for controllers
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 064ecaafa..4f14be524 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -278,6 +278,9 @@ void Config::ReadValues() { | |||
| 278 | if (Settings::values.players.GetValue()[p].analogs[i].empty()) | 278 | if (Settings::values.players.GetValue()[p].analogs[i].empty()) |
| 279 | Settings::values.players.GetValue()[p].analogs[i] = default_param; | 279 | Settings::values.players.GetValue()[p].analogs[i] = default_param; |
| 280 | } | 280 | } |
| 281 | |||
| 282 | Settings::values.players.GetValue()[p].connected = | ||
| 283 | sdl2_config->GetBoolean(group, "connected", false); | ||
| 281 | } | 284 | } |
| 282 | 285 | ||
| 283 | ReadSetting("ControlsGeneral", Settings::values.mouse_enabled); | 286 | ReadSetting("ControlsGeneral", Settings::values.mouse_enabled); |