From b45360b49ed5b798717480986ffa68dd7087d227 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 1 May 2022 14:48:13 +1000 Subject: [PATCH] VMManager: Don't load WS patches zip multiple times --- pcsx2/VMManager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcsx2/VMManager.cpp b/pcsx2/VMManager.cpp index 9fa3910a5e..6bf205dd97 100644 --- a/pcsx2/VMManager.cpp +++ b/pcsx2/VMManager.cpp @@ -376,6 +376,8 @@ static void LoadPatches(const std::string& crc_string, bool show_messages, bool // No ws cheat files found at the cheats_ws folder, try the ws cheats zip file. if (!s_widescreen_cheats_loaded) { + s_widescreen_cheats_loaded = true; + std::optional> data = Host::ReadResourceFile("cheats_ws.zip"); if (data.has_value()) s_widescreen_cheats_data = std::move(data.value());