Browse Source
Merge pull request #6816 from lat9nq/fix-mult-contrl
config: Read connected setting for controllers
pull/15/merge
Morph
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
src/yuzu_cmd/config.cpp
|
|
|
@ -278,6 +278,9 @@ void Config::ReadValues() { |
|
|
|
if (Settings::values.players.GetValue()[p].analogs[i].empty()) |
|
|
|
Settings::values.players.GetValue()[p].analogs[i] = default_param; |
|
|
|
} |
|
|
|
|
|
|
|
Settings::values.players.GetValue()[p].connected = |
|
|
|
sdl2_config->GetBoolean(group, "connected", false); |
|
|
|
} |
|
|
|
|
|
|
|
ReadSetting("ControlsGeneral", Settings::values.mouse_enabled); |
|
|
|
|