Renamed "Enable Patches" into "Automatic Gamefixes" to make it very clear what the option does.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4478 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2011-03-23 21:27:37 +00:00
parent c44e5752f6
commit d08a70252b
2 changed files with 4 additions and 4 deletions

View File

@ -134,7 +134,7 @@ void Dialogs::SysConfigDialog::AddPresetsControl()
m_slider_presets->SetToolTip(
pxEt( "!Notice:Tooltip:Presets:Slider",
L"The Presets apply speed hacks, some recompiler options and some game fixes known to boost speed.\n"
L"Known important game fixes ('Patches') will be applied automatically.\n\n"
L"Known important game fixes will be applied automatically.\n\n"
L"Presets info:\n"
L"1 - The most accurate emulation but also the slowest.\n"
L"3 --> Tries to balance speed with compatibility.\n"
@ -148,7 +148,7 @@ void Dialogs::SysConfigDialog::AddPresetsControl()
m_check_presets->SetToolTip(
pxEt( "!Notice:Tooltip:Presets:Checkbox",
L"The Presets apply speed hacks, some recompiler options and some game fixes known to boost speed.\n"
L"Known important game fixes ('Patches') will be applied automatically.\n\n"
L"Known important game fixes will be applied automatically.\n\n"
L"--> Uncheck to modify settings manually (with current preset as base)"
)
);

View File

@ -416,8 +416,8 @@ MainEmuFrame::MainEmuFrame(wxWindow* parent, const wxString& title)
m_menuSys.AppendSeparator();
m_menuSys.Append(MenuId_EnablePatches, _("Enable Patches"),
wxEmptyString, wxITEM_CHECK);
m_menuSys.Append(MenuId_EnablePatches, _("Automatic Gamefixes"),
_("Automatically applies needed Gamefixes to known problematic games"), wxITEM_CHECK);
m_menuSys.Append(MenuId_EnableCheats, _("Enable Cheats"),
wxEmptyString, wxITEM_CHECK);