mirror of https://github.com/PCSX2/pcsx2.git
gsdx log: print detected crc
Helpful to get crc from gs dump
This commit is contained in:
parent
fb6a6f73c4
commit
48d962e15a
|
@ -534,6 +534,7 @@ bool IsCrcExcluded(string exclusionList, uint32 crc)
|
|||
|
||||
CRC::Game CRC::Lookup(uint32 crc)
|
||||
{
|
||||
printf("GSdx Lookup CRC:%X\n", crc);
|
||||
if(m_map.empty())
|
||||
{
|
||||
string exclusions = theApp.GetConfig( "CrcHacksExclusions", "" );
|
||||
|
@ -549,7 +550,7 @@ CRC::Game CRC::Lookup(uint32 crc)
|
|||
, m_games[i].crc, m_games[i].title, m_games[i].region, m_map[m_games[i].crc]->title, m_map[m_games[i].crc]->region);
|
||||
crcDups++;
|
||||
}
|
||||
|
||||
|
||||
m_map[m_games[i].crc] = &m_games[i];
|
||||
}
|
||||
//else
|
||||
|
|
Loading…
Reference in New Issue