From e27d04ff08699a8ed5e55a4dbd4f208e08c19ad1 Mon Sep 17 00:00:00 2001 From: "ramapcsx2.code" Date: Fri, 31 Jan 2014 12:00:50 +0000 Subject: [PATCH] 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 --- pcsx2/gui/AppCoreThread.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pcsx2/gui/AppCoreThread.cpp b/pcsx2/gui/AppCoreThread.cpp index 8e58d3d3b9..c2c17f862e 100644 --- a/pcsx2/gui/AppCoreThread.cpp +++ b/pcsx2/gui/AppCoreThread.cpp @@ -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"; }