mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00: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"));
|
||||
|
||||
// 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"));
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue