From 010d257b694432e10665610ff47b64ff5026752c Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Fri, 28 Jan 2022 20:02:07 +0100 Subject: [PATCH] naomi2: vf4tuned cheat/hack to skip DIMM fw version check --- core/cheats.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/cheats.cpp b/core/cheats.cpp index 9db937b17..04e732fa7 100644 --- a/core/cheats.cpp +++ b/core/cheats.cpp @@ -367,6 +367,11 @@ void CheatManager::reset(const std::string& gameId) if (!cheatFile.empty()) loadCheatFile(cheatFile); #endif + if (gameId == "VF4 FINAL TUNED JAPAN") + { + active = true; + cheats.push_back({ Cheat::Type::setValue, "Skip DIMM version check", true, 16, 0x000205c6, 9 }); + } } widescreen_cheat = nullptr; if (!config::WidescreenGameHacks)