Merge pull request #231 from raven02/patch-1

Set default off for WriteColorBuffers / DepthBuffers
This commit is contained in:
B1ackDaemon 2014-05-17 12:22:27 +03:00
commit 36d5cf1a7f
2 changed files with 4 additions and 4 deletions

View file

@ -351,7 +351,7 @@ void MainFrame::Config(wxCommandEvent& WXUNUSED(event))
wxStaticBoxSizer* s_round_audio_out = new wxStaticBoxSizer(wxVERTICAL, p_audio, _("Audio Out"));
// 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
wxStaticBoxSizer* s_round_sys_lang = new wxStaticBoxSizer(wxVERTICAL, p_system, _("Language"));

View file

@ -212,15 +212,15 @@ public:
void Load()
{
CPUDecoderMode.Load(2);
CPUIgnoreRWErrors.Load(false);
CPUIgnoreRWErrors.Load(true);
SPUDecoderMode.Load(1);
GSRenderMode.Load(1);
GSResolution.Load(4);
GSAspectRatio.Load(2);
GSVSyncEnable.Load(false);
GSLogPrograms.Load(false);
GSDumpColorBuffers.Load(true);
GSDumpDepthBuffer.Load(true);
GSDumpColorBuffers.Load(false);
GSDumpDepthBuffer.Load(false);
PadHandlerMode.Load(1);
KeyboardHandlerMode.Load(0);
MouseHandlerMode.Load(0);