From 20af7c4981ab043dbcd80cdf02e1d3087b259ac8 Mon Sep 17 00:00:00 2001 From: raven02 Date: Fri, 16 May 2014 21:27:14 +0800 Subject: [PATCH 1/3] Log lvl -> Log Level --- rpcs3/Gui/MainFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Gui/MainFrame.cpp b/rpcs3/Gui/MainFrame.cpp index c741ee99b9..302ee69650 100644 --- a/rpcs3/Gui/MainFrame.cpp +++ b/rpcs3/Gui/MainFrame.cpp @@ -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")); From 8278c8f5c4328abdc57b320c9217c0e2f7a7ef0d Mon Sep 17 00:00:00 2001 From: raven02 Date: Fri, 16 May 2014 21:29:34 +0800 Subject: [PATCH 2/3] Set default off for WriteColorBuffers / DepthBuffers --- rpcs3/Ini.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Ini.h b/rpcs3/Ini.h index 893decb327..4c3bf0026c 100644 --- a/rpcs3/Ini.h +++ b/rpcs3/Ini.h @@ -219,8 +219,8 @@ public: 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); From ddfdaa270eb1a3dbe2d0d7a3487fc9475ce96e62 Mon Sep 17 00:00:00 2001 From: raven02 Date: Sat, 17 May 2014 10:03:21 +0800 Subject: [PATCH 3/3] Set default on for Ignore RW errors This seems to be making couples of games at least not booting without the option ticking. --- rpcs3/Ini.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Ini.h b/rpcs3/Ini.h index 4c3bf0026c..7bb4f282fa 100644 --- a/rpcs3/Ini.h +++ b/rpcs3/Ini.h @@ -212,7 +212,7 @@ public: void Load() { CPUDecoderMode.Load(2); - CPUIgnoreRWErrors.Load(false); + CPUIgnoreRWErrors.Load(true); SPUDecoderMode.Load(1); GSRenderMode.Load(1); GSResolution.Load(4);