Fix GSdx game patches not loading when bios skip hack enabled.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1996 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2009-10-10 11:50:39 +00:00
parent a5aa1e65d6
commit 4b6e67eff8

View File

@ -18,6 +18,7 @@
#include "Common.h"
#include "CDVD/IsoFSdrv.h"
#include "DebugTools/Debug.h"
#include "GS.h" // for sending game crc to mtgs
using namespace std;
@ -604,8 +605,8 @@ void loadElfFile(const wxString& filename)
ElfCRC = elfobj.GetCRC();
Console.Status( wxsFormat( L"loadElfFile: %s; CRC = %8.8X", filename.c_str(), ElfCRC ) );
ElfApplyPatches();
mtgsThread.SendGameCRC( ElfCRC );
return;
}