Add the new 'Clean' themes from MaJoR and default to Clean by changing the name of the config key (yes, hack)
|
@ -0,0 +1,3 @@
|
|||
By Michael "MaJoR" Roesch of the Dolphin team
|
||||
|
||||
dolphin-emu.org
|
After Width: | Height: | Size: 342 B |
After Width: | Height: | Size: 511 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 741 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 938 B |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 925 B |
After Width: | Height: | Size: 359 B |
After Width: | Height: | Size: 622 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1020 B |
After Width: | Height: | Size: 352 B |
After Width: | Height: | Size: 939 B |
|
@ -0,0 +1,3 @@
|
|||
By Michael "MaJoR" Roesch of the Dolphin team
|
||||
|
||||
dolphin-emu.org
|
After Width: | Height: | Size: 377 B |
After Width: | Height: | Size: 483 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 658 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 923 B |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 828 B |
After Width: | Height: | Size: 355 B |
After Width: | Height: | Size: 617 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 923 B |
|
@ -0,0 +1,3 @@
|
|||
By Michael "MaJoR" Roesch of the Dolphin team
|
||||
|
||||
dolphin-emu.org
|
After Width: | Height: | Size: 368 B |
After Width: | Height: | Size: 520 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 796 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 979 B |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 940 B |
After Width: | Height: | Size: 368 B |
After Width: | Height: | Size: 652 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 365 B |
After Width: | Height: | Size: 998 B |
|
@ -0,0 +1,3 @@
|
|||
By Michael "MaJoR" Roesch of the Dolphin team
|
||||
|
||||
dolphin-emu.org
|
After Width: | Height: | Size: 471 B |
After Width: | Height: | Size: 526 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 884 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 940 B |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 405 B |
After Width: | Height: | Size: 662 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 382 B |
After Width: | Height: | Size: 1.1 KiB |
|
@ -56,7 +56,7 @@ ShowStatusbar = True
|
|||
ShowLogWindow = False
|
||||
ShowLogConfigWindow = False
|
||||
ShowConsole = False
|
||||
ThemeName = Boomy
|
||||
ThemeName40 = Clean
|
||||
[Hotkeys]
|
||||
Open = 79
|
||||
OpenModifier = 2
|
||||
|
|
|
@ -189,7 +189,7 @@ void SConfig::SaveSettings()
|
|||
ini.Set("Interface", "ShowLogWindow", m_InterfaceLogWindow);
|
||||
ini.Set("Interface", "ShowLogConfigWindow", m_InterfaceLogConfigWindow);
|
||||
ini.Set("Interface", "ShowConsole", m_InterfaceConsole);
|
||||
ini.Set("Interface", "ThemeName", m_LocalCoreStartupParameter.theme_name);
|
||||
ini.Set("Interface", "ThemeName40", m_LocalCoreStartupParameter.theme_name);
|
||||
|
||||
// Hotkeys
|
||||
for (int i = 0; i < NUM_HOTKEYS; i++)
|
||||
|
@ -342,7 +342,7 @@ void SConfig::LoadSettings()
|
|||
ini.Get("Interface", "ShowLogWindow", &m_InterfaceLogWindow, false);
|
||||
ini.Get("Interface", "ShowLogConfigWindow", &m_InterfaceLogConfigWindow, false);
|
||||
ini.Get("Interface", "ShowConsole", &m_InterfaceConsole, false);
|
||||
ini.Get("Interface", "ThemeName", &m_LocalCoreStartupParameter.theme_name, "Boomy");
|
||||
ini.Get("Interface", "ThemeName40", &m_LocalCoreStartupParameter.theme_name, "Clean");
|
||||
|
||||
// Hotkeys
|
||||
for (int i = 0; i < NUM_HOTKEYS; i++)
|
||||
|
|