mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Added extension option to Wiimote settings. It doesn't work currently. Renamed a file. Added log manager option to only show logs unique to that verbosity level.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1197 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -37,6 +37,8 @@ void Config::Load()
|
||||
|
||||
iniFile.Get("Settings", "SidewaysDPad", &bSidewaysDPad, 0); // Hardware
|
||||
iniFile.Get("Settings", "WideScreen", &bWideScreen, 0);
|
||||
iniFile.Get("Settings", "ExtensionConnected", &bExtensionConnected, 0);
|
||||
|
||||
}
|
||||
|
||||
void Config::Save()
|
||||
@ -45,6 +47,8 @@ void Config::Save()
|
||||
iniFile.Load(FULL_CONFIG_DIR "Wiimote.ini");
|
||||
iniFile.Set("Settings", "SidewaysDPad", bSidewaysDPad);
|
||||
iniFile.Set("Settings", "WideScreen", bWideScreen);
|
||||
iniFile.Set("Settings", "ExtensionConnected", bExtensionConnected);
|
||||
|
||||
|
||||
iniFile.Save(FULL_CONFIG_DIR "Wiimote.ini");
|
||||
}
|
||||
|
Reference in New Issue
Block a user