diff options
| author | 2021-06-28 15:58:16 -0400 | |
|---|---|---|
| committer | 2021-06-28 17:32:17 -0400 | |
| commit | b91b76df4fe27d781bd95ddb89b78ff54df57029 (patch) | |
| tree | abd3de5c02b036ec936a70599e496ba1d45d7849 /src/yuzu_cmd/yuzu.cpp | |
| parent | configuration: Defer to common/settings for per-game settings defaults (diff) | |
| download | yuzu-b91b76df4fe27d781bd95ddb89b78ff54df57029.tar.gz yuzu-b91b76df4fe27d781bd95ddb89b78ff54df57029.tar.xz yuzu-b91b76df4fe27d781bd95ddb89b78ff54df57029.zip | |
general: Make most settings a BasicSetting
Creates a new BasicSettings class in common/settings, and forces setting
a default and label for each setting that uses it in common/settings.
Moves defaults and labels from both frontends into common settings.
Creates a helper function in each frontend to facillitate reading the
settings now with the new default and label properties.
Settings::Setting is also now a subclass of Settings::BasicSetting. Also
adds documentation for both Setting and BasicSetting.
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
| -rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 50e388312..9607cdcb1 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp | |||
| @@ -78,7 +78,7 @@ static void InitializeLogging() { | |||
| 78 | using namespace Common; | 78 | using namespace Common; |
| 79 | 79 | ||
| 80 | Log::Filter log_filter(Log::Level::Debug); | 80 | Log::Filter log_filter(Log::Level::Debug); |
| 81 | log_filter.ParseFilterString(Settings::values.log_filter); | 81 | log_filter.ParseFilterString(static_cast<std::string>(Settings::values.log_filter)); |
| 82 | Log::SetGlobalFilter(log_filter); | 82 | Log::SetGlobalFilter(log_filter); |
| 83 | 83 | ||
| 84 | Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>()); | 84 | Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>()); |