VMManager: Fix "X widescreen patches loaded" text when loading from files

This commit is contained in:
Silent 2023-03-19 20:51:47 +01:00 committed by refractionpcsx2
parent 6ad222117d
commit 443cc08229
1 changed files with 1 additions and 1 deletions

View File

@ -591,7 +591,7 @@ void VMManager::LoadPatches(const std::string& serial, u32 crc, bool show_messag
// wide screen patches
if (EmuConfig.EnableWideScreenPatches && crc != 0)
{
if (!Achievements::ChallengeModeActive() && (s_active_widescreen_patches = LoadPatchesFromDir(crc_string, EmuFolders::CheatsWS, "Widescreen hacks", false) > 0))
if (!Achievements::ChallengeModeActive() && (s_active_widescreen_patches = LoadPatchesFromDir(crc_string, EmuFolders::CheatsWS, "Widescreen hacks", false)) > 0)
{
Console.WriteLn(Color_Gray, "Found widescreen patches in the cheats_ws folder --> skipping cheats_ws.zip");
}