- 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:
ramapcsx2 2010-09-26 17:31:23 +00:00
parent e24ceba0e1
commit 666d800d83
3 changed files with 9 additions and 3 deletions

View File

@ -35,12 +35,16 @@ void TraceLogFilters::LoadSave( IniInterface& ini )
IniEntry( IOP.bitset );
}
// all speedhacks are disabled by default
Pcsx2Config::SpeedhackOptions::SpeedhackOptions()
{
bitset = 0;
EECycleRate = 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 )
@ -334,7 +338,9 @@ void Pcsx2Config::GamefixOptions::LoadSave( IniInterface& ini )
Pcsx2Config::Pcsx2Config()
{
bitset = 0;
// Set defaults for fresh installs / reset settings
McdEnableEjection = true;
EnablePatches = true;
}
void Pcsx2Config::LoadSave( IniInterface& ini )

View File

@ -190,7 +190,7 @@ Panels::CpuPanelVU::CpuPanelVU( wxWindow* parent )
RadioPanelItem(_("microVU Recompiler"))
.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."))
};

View File

@ -164,7 +164,7 @@ Panels::SpeedHacksPanel::SpeedHacksPanel( wxWindow* parent )
_("Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]") );
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"),
_("Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]") );