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:
ramapcsx2 2010-02-06 16:34:36 +00:00
parent ebadb4b971
commit 19b9ef1cea
3 changed files with 7 additions and 4 deletions

View File

@ -65,12 +65,12 @@ const wxChar* Panels::SpeedHacksPanel::GetVUcycleSliderMsg( int val )
case 1: case 1:
return pxE( ".Panels:Speedhacks:VUCycleSteal1", 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: case 2:
return pxE( ".Panels:Speedhacks:VUCycleSteal2", 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: case 3:
@ -106,7 +106,8 @@ Panels::SpeedHacksPanel::SpeedHacksPanel( wxWindow* parent )
L"If you have issues, always try disabling these hacks first." 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_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") ); m_button_Defaults = new wxButton( this, wxID_DEFAULT, _("Restore Defaults") );

View File

@ -129,6 +129,7 @@ CRC::Game CRC::m_games[] =
{0x44A8A22A, GodOfWar2, EU, 0}, {0x44A8A22A, GodOfWar2, EU, 0},
{0x4340C7C6, GodOfWar2, Unknown, 0}, {0x4340C7C6, GodOfWar2, Unknown, 0},
{0xF8CD3DF6, GodOfWar2, Unknown, 0}, {0xF8CD3DF6, GodOfWar2, Unknown, 0},
{0x0B82BFF7, GodOfWar2, Unknown, 0},
{0x5D482F18, JackieChanAdv, Unknown, 0}, {0x5D482F18, JackieChanAdv, Unknown, 0},
{0xf0a6d880, HarvestMoon, US, 0}, {0xf0a6d880, HarvestMoon, US, 0},
{0x75c01a04, NamcoXCapcom, US, 0}, {0x75c01a04, NamcoXCapcom, US, 0},
@ -156,7 +157,7 @@ CRC::Game CRC::m_games[] =
{0xD7273511, SMTDDS1, US, ZWriteMustNotClear}, // SMT Digital Devil Saga {0xD7273511, SMTDDS1, US, ZWriteMustNotClear}, // SMT Digital Devil Saga
{0x1683A6BE, SMTDDS1, EU, ZWriteMustNotClear}, // SMT Digital Devil Saga {0x1683A6BE, SMTDDS1, EU, ZWriteMustNotClear}, // SMT Digital Devil Saga
{0x44865CE1, SMTDDS1, JP, 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}, {0x0B8AB37B, RozenMaidenGebetGarden, JP, 0},
}; };

View File

@ -77,6 +77,7 @@ public:
RadiataStories, RadiataStories,
SMTNocturne, SMTNocturne,
SMTDDS1, SMTDDS1,
SMTDDS2,
RozenMaidenGebetGarden, RozenMaidenGebetGarden,
TitleCount, TitleCount,
}; };