mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
Merge pull request #231 from raven02/patch-1
Set default off for WriteColorBuffers / DepthBuffers
This commit is contained in:
commit
36d5cf1a7f
2 changed files with 4 additions and 4 deletions
|
@ -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"));
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue