diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-02-26 09:20:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-26 09:20:02 -0500 |
commit | c50a930bbb12184e9dee70000cec5588f2f56b0a (patch) | |
tree | 242cb7de7a65be1337f61c4bcdd8dfca79b0ecfa /src/common/settings.h | |
parent | 833afb7ce340030593f5d4fcb3cbd59a19530a7f (diff) | |
parent | 60688bf0d5fa6daf40ccd10af82386bc2d32f1fa (diff) |
Merge pull request #9824 from german77/burning-profiles
yuzu: config: Remove player 8 and 9 from config file
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 6d27dd5ee..9fe764e86 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -481,7 +481,7 @@ struct Values { SwitchableSetting<s32, true> sound_index{1, 0, 2, "sound_index"}; // Controls - InputSetting<std::array<PlayerInput, 10>> players; + InputSetting<std::array<PlayerInput, 8>> players; SwitchableSetting<bool> use_docked_mode{true, "use_docked_mode"}; |