Logging CheckBox, cellGame stuff and other fixes

* cellGameContentPermit and cellGameBootCheck updated.
* Checkbox in the Settings dialog, for enabling logging.
* Fixed GUI issue in the InterpreterDisAsmFrame.
* Fixed -dirty flag in wxWidgets submodule.
This commit is contained in:
Alexandro Sánchez Bach 2014-02-13 20:05:23 +01:00
parent 2b63888782
commit eb93e87b7f
11 changed files with 40 additions and 29 deletions

View file

@ -104,6 +104,7 @@ public:
IniEntry<u8> KeyboardHandlerMode;
IniEntry<u8> MouseHandlerMode;
IniEntry<u8> AudioOutMode;
IniEntry<bool> HLELogging;
IniEntry<int> PadHandlerLeft;
IniEntry<int> PadHandlerDown;
@ -164,6 +165,9 @@ public:
path = DefPath + "\\" + "Audio";
AudioOutMode.Init("AudioOutMode", path);
path = DefPath + "\\" + "HLE";
HLELogging.Init("HLELogging", path);
}
void Load()
@ -180,6 +184,7 @@ public:
KeyboardHandlerMode.Load(0);
MouseHandlerMode.Load(0);
AudioOutMode.Load(0);
HLELogging.Load(false);
PadHandlerLeft.Load(static_cast<int>('A'));
PadHandlerDown.Load(static_cast<int>('S'));
@ -213,6 +218,7 @@ public:
KeyboardHandlerMode.Save();
MouseHandlerMode.Save();
AudioOutMode.Save();
HLELogging.Save();
PadHandlerLeft.Save();
PadHandlerDown.Save();