aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/ui_settings.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-05 22:54:01 -0400
committerGitHub <noreply@github.com>2018-10-05 22:54:01 -0400
commite6ee31a8e9f72add8ec61ae7e53f35b922bd90b2 (patch)
tree44b73707276d6a78dabc9b1d887d5bdd53cc5a53 /src/yuzu/ui_settings.cpp
parentd3bfb102d8f6aef7f05b7ddbb5f17c312fa038d7 (diff)
parent30dfd89126b4d1e7366697fb7f937e2db29d7295 (diff)
Merge pull request #1440 from lioncash/array
ui_settings: Place definition of the theme array within the cpp file
Diffstat (limited to 'src/yuzu/ui_settings.cpp')
-rw-r--r--src/yuzu/ui_settings.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/yuzu/ui_settings.cpp b/src/yuzu/ui_settings.cpp
index 120b34990..a314493fc 100644
--- a/src/yuzu/ui_settings.cpp
+++ b/src/yuzu/ui_settings.cpp
@@ -6,5 +6,11 @@
namespace UISettings {
+const Themes themes{{
+ {"Default", "default"},
+ {"Dark", "qdarkstyle"},
+}};
+
Values values = {};
-}
+
+} // namespace UISettings