mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-21 05:09:46 -06:00
Allow the user to choose the UI theme
Mainly useful for those who want dark mode on Windows.
This commit is contained in:
@ -142,6 +142,7 @@ bool MouseHide;
|
||||
int MouseHideSeconds;
|
||||
|
||||
bool PauseLostFocus;
|
||||
std::string UITheme;
|
||||
|
||||
int64_t RTCOffset;
|
||||
|
||||
@ -344,6 +345,7 @@ ConfigEntry ConfigFile[] =
|
||||
{"MouseHide", 1, &MouseHide, false, false},
|
||||
{"MouseHideSeconds", 0, &MouseHideSeconds, 5, false},
|
||||
{"PauseLostFocus", 1, &PauseLostFocus, false, false},
|
||||
{"UITheme", 2, &UITheme, (std::string)"", false},
|
||||
|
||||
{"RTCOffset", 3, &RTCOffset, (int64_t)0, true},
|
||||
|
||||
|
Reference in New Issue
Block a user