gsdx log: print detected crc

Helpful to get crc from gs dump
This commit is contained in:
Gregory Hainaut 2016-05-08 16:30:50 +02:00
parent fb6a6f73c4
commit 48d962e15a
1 changed files with 2 additions and 1 deletions

View File

@ -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