mirror of https://github.com/PCSX2/pcsx2.git
Some more CRC's for GSdx and altered speedhacks descriptions.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2570 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
ebadb4b971
commit
19b9ef1cea
|
@ -65,12 +65,12 @@ const wxChar* Panels::SpeedHacksPanel::GetVUcycleSliderMsg( int val )
|
|||
|
||||
case 1:
|
||||
return pxE( ".Panels:Speedhacks:VUCycleSteal1",
|
||||
L"1 - Mild VU Cycle Stealing. High compatibility with some speedup for most games."
|
||||
L"1 - Mild VU Cycle Stealing. Lower compatibility, but some speedup for most games."
|
||||
);
|
||||
|
||||
case 2:
|
||||
return pxE( ".Panels:Speedhacks:VUCycleSteal2",
|
||||
L"2 - Moderate VU Cycle Stealing. Moderate compatibility with significant speedups in some games."
|
||||
L"2 - Moderate VU Cycle Stealing. Even lower compatibility, but significant speedups in some games."
|
||||
);
|
||||
|
||||
case 3:
|
||||
|
@ -106,7 +106,8 @@ Panels::SpeedHacksPanel::SpeedHacksPanel( wxWindow* parent )
|
|||
L"If you have issues, always try disabling these hacks first."
|
||||
) );
|
||||
|
||||
m_check_Enable = new pxCheckBox( this, _("Enable speedhacks") );
|
||||
m_check_Enable = new pxCheckBox( this, _("Enable speedhacks"),
|
||||
_("(Warning, can cause false FPS readings and many bugs!)"));
|
||||
m_check_Enable->SetToolTip(_("The safest way to make sure that all speedhacks are completely disabled."));
|
||||
|
||||
m_button_Defaults = new wxButton( this, wxID_DEFAULT, _("Restore Defaults") );
|
||||
|
|
|
@ -129,6 +129,7 @@ CRC::Game CRC::m_games[] =
|
|||
{0x44A8A22A, GodOfWar2, EU, 0},
|
||||
{0x4340C7C6, GodOfWar2, Unknown, 0},
|
||||
{0xF8CD3DF6, GodOfWar2, Unknown, 0},
|
||||
{0x0B82BFF7, GodOfWar2, Unknown, 0},
|
||||
{0x5D482F18, JackieChanAdv, Unknown, 0},
|
||||
{0xf0a6d880, HarvestMoon, US, 0},
|
||||
{0x75c01a04, NamcoXCapcom, US, 0},
|
||||
|
@ -156,7 +157,7 @@ CRC::Game CRC::m_games[] =
|
|||
{0xD7273511, SMTDDS1, US, ZWriteMustNotClear}, // SMT Digital Devil Saga
|
||||
{0x1683A6BE, SMTDDS1, EU, ZWriteMustNotClear}, // SMT Digital Devil Saga
|
||||
{0x44865CE1, SMTDDS1, JP, ZWriteMustNotClear}, // SMT Digital Devil Saga
|
||||
//{0xE47C1A9C, SMTDDS2, JP, ZWriteMustNotClear}, // SMTDDS2 (not yet confirmed as needing it)
|
||||
{0xE47C1A9C, SMTDDS2, JP, ZWriteMustNotClear}, // SMT Digital Devil Saga 2
|
||||
{0x0B8AB37B, RozenMaidenGebetGarden, JP, 0},
|
||||
};
|
||||
|
||||
|
|
|
@ -77,6 +77,7 @@ public:
|
|||
RadiataStories,
|
||||
SMTNocturne,
|
||||
SMTDDS1,
|
||||
SMTDDS2,
|
||||
RozenMaidenGebetGarden,
|
||||
TitleCount,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue