From 7538424efb8c184df89f0211ab3d2f42e7898a96 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Sun, 4 May 2025 19:31:09 +0200 Subject: [PATCH] cheat to allow The Next Tetris online features Bypass check of modulation type and rx/tx speeds. --- core/cheats.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/cheats.cpp b/core/cheats.cpp index 62e2b6883..0b0fc0b7a 100644 --- a/core/cheats.cpp +++ b/core/cheats.cpp @@ -538,6 +538,10 @@ void CheatManager::reset(const std::string& gameId) cheats.emplace_back(Cheat::Type::runNextIfEq, "bypass auth ifeq", true, 32, 0x00800524, 0x2fd62fe6, true); cheats.emplace_back(Cheat::Type::setValue, "bypass dricas auth", true, 32, 0x00800524, 0xe000000b, true); } + else if (gameId == "T40214N") { // The Next Tetris (US) + cheats.emplace_back(Cheat::Type::runNextIfEq, "bypass speed ifeq", true, 32, 0x0016d5d4, 0x2f862fe6, true); + cheats.emplace_back(Cheat::Type::setValue, "bypass speed check", true, 32, 0x0016d5d4, 0xe001000b, true); + } if (cheats.size() > cheatCount) setActive(true);