diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-18 21:36:20 +0200 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 16:56:55 +0200 |
commit | 267f3c7905972ad78713cd92f96e3073ea1c8996 (patch) | |
tree | 13fcd6568c57dbbc8d7417101fa54f332da7671f /src/common/settings.cpp | |
parent | shared_translation: Update memory layout mode strings (diff) | |
download | yuzu-267f3c7905972ad78713cd92f96e3073ea1c8996.tar yuzu-267f3c7905972ad78713cd92f96e3073ea1c8996.tar.gz yuzu-267f3c7905972ad78713cd92f96e3073ea1c8996.tar.bz2 yuzu-267f3c7905972ad78713cd92f96e3073ea1c8996.tar.lz yuzu-267f3c7905972ad78713cd92f96e3073ea1c8996.tar.xz yuzu-267f3c7905972ad78713cd92f96e3073ea1c8996.tar.zst yuzu-267f3c7905972ad78713cd92f96e3073ea1c8996.zip |
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 78fa99113..59d24a053 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -25,6 +25,7 @@ namespace Settings { +// Clang 14 and earlier have errors when explicitly instantiating these classes #ifndef CANNOT_EXPLICITLY_INSTANTIATE #define SETTING(TYPE, RANGED) template class Setting<TYPE, RANGED> #define SWITCHABLE(TYPE, RANGED) template class SwitchableSetting<TYPE, RANGED> @@ -113,11 +114,11 @@ void LogSettings() { for (const auto& setting : settings) { if (setting->Id() == values.yuzu_token.Id()) { - // Hide the token secret, which could be used to share patreon builds + // Hide the token secret, for security reasons. continue; } - std::string name = fmt::format( + const auto name = fmt::format( "{:c}{:c} {}.{}", setting->ToString() == setting->DefaultToString() ? '-' : 'M', setting->UsingGlobal() ? '-' : 'C', TranslateCategory(category), setting->GetLabel()); |