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:
ramapcsx2.code 2014-01-31 12:00:50 +00:00
parent c03a1c9bd0
commit e27d04ff08
1 changed files with 4 additions and 2 deletions

View File

@ -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";
}