summaryrefslogtreecommitdiff
path: root/src/common/settings_common.cpp
diff options
context:
space:
mode:
authorGravatar lat9nq2023-06-13 19:37:41 -0400
committerGravatar lat9nq2023-07-21 10:56:54 -0400
commitb4f2ad3ff5c49549bc72997360c31d0662a97439 (patch)
tree71a6cfc62fd2aca84c10832ea0485ebaf4b12c47 /src/common/settings_common.cpp
parentconfiguration/shared: Clean up includes [IWYU] (diff)
downloadyuzu-b4f2ad3ff5c49549bc72997360c31d0662a97439.tar.gz
yuzu-b4f2ad3ff5c49549bc72997360c31d0662a97439.tar.xz
yuzu-b4f2ad3ff5c49549bc72997360c31d0662a97439.zip
settings: Move IsConfiguringGlobal to settings_common
Diffstat (limited to 'src/common/settings_common.cpp')
-rw-r--r--src/common/settings_common.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/settings_common.cpp b/src/common/settings_common.cpp
index a7ce99515..fb42991fa 100644
--- a/src/common/settings_common.cpp
+++ b/src/common/settings_common.cpp
@@ -42,4 +42,14 @@ const std::string& BasicSetting::GetLabel() const {
42 return label; 42 return label;
43} 43}
44 44
45static bool configuring_global = true;
46
47bool IsConfiguringGlobal() {
48 return configuring_global;
49}
50
51void SetConfiguringGlobal(bool is_global) {
52 configuring_global = is_global;
53}
54
45} // namespace Settings 55} // namespace Settings