Merge pull request #231 from raven02/patch-1
Set default off for WriteColorBuffers / DepthBuffers
This commit is contained in:
@@ -351,7 +351,7 @@ void MainFrame::Config(wxCommandEvent& WXUNUSED(event))
|
|||||||
wxStaticBoxSizer* s_round_audio_out = new wxStaticBoxSizer(wxVERTICAL, p_audio, _("Audio Out"));
|
wxStaticBoxSizer* s_round_audio_out = new wxStaticBoxSizer(wxVERTICAL, p_audio, _("Audio Out"));
|
||||||
|
|
||||||
// HLE / Misc.
|
// HLE / Misc.
|
||||||
wxStaticBoxSizer* s_round_hle_log_lvl = new wxStaticBoxSizer(wxVERTICAL, p_hle, _("Log lvl"));
|
wxStaticBoxSizer* s_round_hle_log_lvl = new wxStaticBoxSizer(wxVERTICAL, p_hle, _("Log Level"));
|
||||||
|
|
||||||
// System
|
// System
|
||||||
wxStaticBoxSizer* s_round_sys_lang = new wxStaticBoxSizer(wxVERTICAL, p_system, _("Language"));
|
wxStaticBoxSizer* s_round_sys_lang = new wxStaticBoxSizer(wxVERTICAL, p_system, _("Language"));
|
||||||
|
|||||||
+3
-3
@@ -212,15 +212,15 @@ public:
|
|||||||
void Load()
|
void Load()
|
||||||
{
|
{
|
||||||
CPUDecoderMode.Load(2);
|
CPUDecoderMode.Load(2);
|
||||||
CPUIgnoreRWErrors.Load(false);
|
CPUIgnoreRWErrors.Load(true);
|
||||||
SPUDecoderMode.Load(1);
|
SPUDecoderMode.Load(1);
|
||||||
GSRenderMode.Load(1);
|
GSRenderMode.Load(1);
|
||||||
GSResolution.Load(4);
|
GSResolution.Load(4);
|
||||||
GSAspectRatio.Load(2);
|
GSAspectRatio.Load(2);
|
||||||
GSVSyncEnable.Load(false);
|
GSVSyncEnable.Load(false);
|
||||||
GSLogPrograms.Load(false);
|
GSLogPrograms.Load(false);
|
||||||
GSDumpColorBuffers.Load(true);
|
GSDumpColorBuffers.Load(false);
|
||||||
GSDumpDepthBuffer.Load(true);
|
GSDumpDepthBuffer.Load(false);
|
||||||
PadHandlerMode.Load(1);
|
PadHandlerMode.Load(1);
|
||||||
KeyboardHandlerMode.Load(0);
|
KeyboardHandlerMode.Load(0);
|
||||||
MouseHandlerMode.Load(0);
|
MouseHandlerMode.Load(0);
|
||||||
|
|||||||
Reference in New Issue
Block a user