diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-06-13 19:37:41 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 10:56:54 -0400 |
commit | b4f2ad3ff5c49549bc72997360c31d0662a97439 (patch) | |
tree | 71a6cfc62fd2aca84c10832ea0485ebaf4b12c47 /src/common/settings.cpp | |
parent | 3b0650b70d8196b30102e73305066e0dba9da8fe (diff) |
settings: Move IsConfiguringGlobal to settings_common
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index d98dd2925..a1cc76a38 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -63,7 +63,6 @@ SWITCHABLE(u8, true); #undef SWITCHABLE Values values; -static bool configuring_global = true; std::string GetTimeZoneString() { const auto time_zone_index = static_cast<std::size_t>(values.time_zone_index.GetValue()); @@ -131,14 +130,6 @@ void LogSettings() { log_path("DataStorage_SDMCDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::SDMCDir)); } -bool IsConfiguringGlobal() { - return configuring_global; -} - -void SetConfiguringGlobal(bool is_global) { - configuring_global = is_global; -} - bool IsGPULevelExtreme() { return values.gpu_accuracy.GetValue() == GpuAccuracy::Extreme; } |