mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
a5aa1e65d6
commit
4b6e67eff8
|
@ -18,6 +18,7 @@
|
||||||
#include "Common.h"
|
#include "Common.h"
|
||||||
#include "CDVD/IsoFSdrv.h"
|
#include "CDVD/IsoFSdrv.h"
|
||||||
#include "DebugTools/Debug.h"
|
#include "DebugTools/Debug.h"
|
||||||
|
#include "GS.h" // for sending game crc to mtgs
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
|
@ -604,8 +605,8 @@ void loadElfFile(const wxString& filename)
|
||||||
|
|
||||||
ElfCRC = elfobj.GetCRC();
|
ElfCRC = elfobj.GetCRC();
|
||||||
Console.Status( wxsFormat( L"loadElfFile: %s; CRC = %8.8X", filename.c_str(), ElfCRC ) );
|
Console.Status( wxsFormat( L"loadElfFile: %s; CRC = %8.8X", filename.c_str(), ElfCRC ) );
|
||||||
|
|
||||||
ElfApplyPatches();
|
ElfApplyPatches();
|
||||||
|
mtgsThread.SendGameCRC( ElfCRC );
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue