mirror of https://github.com/PCSX2/pcsx2.git
- Enable patches is now on by default.
- Changed some configuration text, warning now that sVU is broken. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3840 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
e24ceba0e1
commit
666d800d83
|
@ -35,12 +35,16 @@ void TraceLogFilters::LoadSave( IniInterface& ini )
|
||||||
IniEntry( IOP.bitset );
|
IniEntry( IOP.bitset );
|
||||||
}
|
}
|
||||||
|
|
||||||
// all speedhacks are disabled by default
|
|
||||||
Pcsx2Config::SpeedhackOptions::SpeedhackOptions()
|
Pcsx2Config::SpeedhackOptions::SpeedhackOptions()
|
||||||
{
|
{
|
||||||
bitset = 0;
|
bitset = 0;
|
||||||
EECycleRate = 0;
|
EECycleRate = 0;
|
||||||
VUCycleSteal = 0;
|
VUCycleSteal = 0;
|
||||||
|
|
||||||
|
// Set recommended speedhacks to enabled by default. They'll still be off globally on resets.
|
||||||
|
WaitLoop = true;
|
||||||
|
IntcStat = true;
|
||||||
|
vuFlagHack = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Pcsx2Config::SpeedhackOptions::LoadSave( IniInterface& ini )
|
void Pcsx2Config::SpeedhackOptions::LoadSave( IniInterface& ini )
|
||||||
|
@ -334,7 +338,9 @@ void Pcsx2Config::GamefixOptions::LoadSave( IniInterface& ini )
|
||||||
Pcsx2Config::Pcsx2Config()
|
Pcsx2Config::Pcsx2Config()
|
||||||
{
|
{
|
||||||
bitset = 0;
|
bitset = 0;
|
||||||
|
// Set defaults for fresh installs / reset settings
|
||||||
McdEnableEjection = true;
|
McdEnableEjection = true;
|
||||||
|
EnablePatches = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Pcsx2Config::LoadSave( IniInterface& ini )
|
void Pcsx2Config::LoadSave( IniInterface& ini )
|
||||||
|
|
|
@ -190,7 +190,7 @@ Panels::CpuPanelVU::CpuPanelVU( wxWindow* parent )
|
||||||
RadioPanelItem(_("microVU Recompiler"))
|
RadioPanelItem(_("microVU Recompiler"))
|
||||||
.SetToolTip(_("New Vector Unit recompiler with much improved compatibility. Recommended.")),
|
.SetToolTip(_("New Vector Unit recompiler with much improved compatibility. Recommended.")),
|
||||||
|
|
||||||
RadioPanelItem(_("superVU Recompiler [legacy]"))
|
RadioPanelItem(_("superVU Recompiler [legacy, broken]"))
|
||||||
.SetToolTip(_("Useful for diagnosing bugs or clamping issues in the new mVU recompiler."))
|
.SetToolTip(_("Useful for diagnosing bugs or clamping issues in the new mVU recompiler."))
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -164,7 +164,7 @@ Panels::SpeedHacksPanel::SpeedHacksPanel( wxWindow* parent )
|
||||||
_("Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]") );
|
_("Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]") );
|
||||||
|
|
||||||
m_check_vuBlockHack = new pxCheckBox( vuHacksPanel, _("mVU Block Hack"),
|
m_check_vuBlockHack = new pxCheckBox( vuHacksPanel, _("mVU Block Hack"),
|
||||||
_("Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]") );
|
_("Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc...") );
|
||||||
|
|
||||||
m_check_vuMinMax = new pxCheckBox( vuHacksPanel, _("mVU Min/Max Hack"),
|
m_check_vuMinMax = new pxCheckBox( vuHacksPanel, _("mVU Min/Max Hack"),
|
||||||
_("Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]") );
|
_("Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]") );
|
||||||
|
|
Loading…
Reference in New Issue