mirror of https://github.com/PCSX2/pcsx2.git
Fix for intention change in last commit, was an oversight :p
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5859 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
c03a1c9bd0
commit
e27d04ff08
|
@ -359,8 +359,10 @@ void AppCoreThread::ApplySettings( const Pcsx2Config& src )
|
|||
ResetCheatsCount();
|
||||
|
||||
//Till the end of this function, entry CRC will be 00000000
|
||||
if (!gameCRC.Length() && (EmuConfig.EnableWideScreenPatches || EmuConfig.EnableCheats) ) {
|
||||
Console.WriteLn(Color_Gray, "Patches: No CRC, using 00000000 instead.");
|
||||
if (!gameCRC.Length()) {
|
||||
if (EmuConfig.EnableWideScreenPatches || EmuConfig.EnableCheats) {
|
||||
Console.WriteLn(Color_Gray, "Patches: No CRC, using 00000000 instead.");
|
||||
}
|
||||
gameCRC = L"00000000";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue