mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-27 06:18:03 -05:00
uisettings: Add enumeration type for themes
Eliminates the usage of a magic number to indicate the default index of the themes array,
This commit is contained in:
@ -29,6 +29,15 @@ struct Shortcut {
|
||||
ContextualShortcut shortcut;
|
||||
};
|
||||
|
||||
enum class Theme {
|
||||
Default,
|
||||
DefaultColorful,
|
||||
Dark,
|
||||
DarkColorful,
|
||||
MidnightBlue,
|
||||
MidnightBlueColorful,
|
||||
};
|
||||
|
||||
using Themes = std::array<std::pair<const char*, const char*>, 6>;
|
||||
extern const Themes themes;
|
||||
|
||||
|
Reference in New Issue
Block a user