summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar lat9nq2023-06-10 00:35:45 -0400
committerGravatar lat9nq2023-07-21 10:56:54 -0400
commit2fba913d0bc022085a0de8848ced02f38e48cd54 (patch)
tree19a561e755f91a9a7cef32899cf8cccc100b8372 /src
parentshared_widget: Use actionTriggered for user input signals (diff)
downloadyuzu-2fba913d0bc022085a0de8848ced02f38e48cd54.tar.gz
yuzu-2fba913d0bc022085a0de8848ced02f38e48cd54.tar.xz
yuzu-2fba913d0bc022085a0de8848ced02f38e48cd54.zip
settings_enums: Add const type where needed
Diffstat (limited to 'src')
-rw-r--r--src/common/settings_enums.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/settings_enums.h b/src/common/settings_enums.h
index d820bc48e..2710f136d 100644
--- a/src/common/settings_enums.h
+++ b/src/common/settings_enums.h
@@ -210,7 +210,7 @@ enum class AspectRatio : u32 {
210#define X(ENUM, NAME) \ 210#define X(ENUM, NAME) \
211 { (#NAME), static_cast<u32>(ENUM::NAME) } 211 { (#NAME), static_cast<u32>(ENUM::NAME) }
212 212
213static std::map<std::type_index, std::map<std::string, u32>> canonicalizations = { 213static const std::map<std::type_index, std::map<std::string, u32>> canonicalizations = {
214 {typeid(AudioEngine), 214 {typeid(AudioEngine),
215 { 215 {
216 {"auto", static_cast<u32>(AudioEngine::Auto)}, 216 {"auto", static_cast<u32>(AudioEngine::Auto)},
@@ -377,7 +377,7 @@ static std::map<std::type_index, std::map<std::string, u32>> canonicalizations =
377 377
378#undef X 378#undef X
379 379
380static std::string invalid_string{"(invalid setting)"}; 380static const std::string invalid_string{"(invalid setting)"};
381 381
382template <typename Type> 382template <typename Type>
383const std::string& CanonicalizeEnum(Type id) { 383const std::string& CanonicalizeEnum(Type id) {