diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-29 12:33:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-29 12:33:09 -0500 |
commit | 337e37f91dcc7d5b6a0a5da3f3196aa0f8df4143 (patch) | |
tree | 70d10b1f7919e6ed6709acab3259c69b038add6c /src/common/settings.h | |
parent | 992ca8c358a5c25840d822ca19baa6c64c689088 (diff) | |
parent | ac11f6e4c5da64db5a6fb2647afbb85164f06086 (diff) |
Merge pull request #11946 from flodavid/gamemode
Enable (Feral Interactive) Gamemode on Linux
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index b929fd957..6425cd98f 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -429,6 +429,9 @@ struct Values { true, true}; + // Linux + SwitchableSetting<bool> enable_gamemode{linkage, true, "enable_gamemode", Category::Linux}; + // Controls InputSetting<std::array<PlayerInput, 10>> players; |