diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-06-28 17:32:24 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-06-28 19:13:53 -0400 |
commit | 7a8de138df35aecf760402a6b8097b4d6e0e8178 (patch) | |
tree | b426f0e41c32ec5fa62974dd6dd8444548040749 /src/yuzu/configuration/configure_filesystem.cpp | |
parent | b91b76df4fe27d781bd95ddb89b78ff54df57029 (diff) |
yuzu qt: Make most UISettings a BasicSetting
For simple primitive settings, moves their defaults and labels to
definition time.
Also fixes typo and clang-format
yuzu qt: config: Fix rng_seed
Diffstat (limited to 'src/yuzu/configuration/configure_filesystem.cpp')
-rw-r--r-- | src/yuzu/configuration/configure_filesystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_filesystem.cpp b/src/yuzu/configuration/configure_filesystem.cpp index d0b5c6efe..9cb317822 100644 --- a/src/yuzu/configuration/configure_filesystem.cpp +++ b/src/yuzu/configuration/configure_filesystem.cpp @@ -55,7 +55,7 @@ void ConfigureFilesystem::setConfiguration() { ui->dump_exefs->setChecked(Settings::values.dump_exefs.GetValue()); ui->dump_nso->setChecked(Settings::values.dump_nso.GetValue()); - ui->cache_game_list->setChecked(UISettings::values.cache_game_list); + ui->cache_game_list->setChecked(UISettings::values.cache_game_list.GetValue()); UpdateEnabledControls(); } |