diff options
| author | 2023-08-22 21:58:09 -0400 | |
|---|---|---|
| committer | 2023-08-22 21:58:09 -0400 | |
| commit | ab862207d7f2de712e1f711141d20921b414cdf7 (patch) | |
| tree | 268ab775ffb7fefcdf78f85c99e2c392f9ab56d7 /src/common/settings.cpp | |
| parent | config(qt): Sanitize docked handheld controller (diff) | |
| download | yuzu-ab862207d7f2de712e1f711141d20921b414cdf7.tar.gz yuzu-ab862207d7f2de712e1f711141d20921b414cdf7.tar.xz yuzu-ab862207d7f2de712e1f711141d20921b414cdf7.zip | |
settings: Add docked mode helper function
Diffstat (limited to 'src/common/settings.cpp')
| -rw-r--r-- | src/common/settings.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 16a58a750..524056841 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | 2 | // SPDX-License-Identifier: GPL-2.0-or-later |
| 3 | 3 | ||
| 4 | #include <version> | 4 | #include <version> |
| 5 | #include "common/settings_enums.h" | ||
| 5 | #if __cpp_lib_chrono >= 201907L | 6 | #if __cpp_lib_chrono >= 201907L |
| 6 | #include <chrono> | 7 | #include <chrono> |
| 7 | #include <exception> | 8 | #include <exception> |
| @@ -145,6 +146,10 @@ bool IsFastmemEnabled() { | |||
| 145 | return true; | 146 | return true; |
| 146 | } | 147 | } |
| 147 | 148 | ||
| 149 | bool IsDockedMode() { | ||
| 150 | return values.use_docked_mode.GetValue() == Settings::ConsoleMode::Docked; | ||
| 151 | } | ||
| 152 | |||
| 148 | float Volume() { | 153 | float Volume() { |
| 149 | if (values.audio_muted) { | 154 | if (values.audio_muted) { |
| 150 | return 0.0f; | 155 | return 0.0f; |