From 14e8114f28a93fb8596c00561b65d9cb590afddd Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Fri, 22 Aug 2014 20:02:54 -0700 Subject: [PATCH] Remove the cheat address hack for Gods Eater Burst. It's wrong now. Although the memory is still not being allocated exactly the same, it's much closer. --- Core/CwCheat.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Core/CwCheat.cpp b/Core/CwCheat.cpp index 77e8c8bf4292..ec03c7f2d5d3 100644 --- a/Core/CwCheat.cpp +++ b/Core/CwCheat.cpp @@ -224,8 +224,6 @@ void CWCheatEngine::SkipAllCodes() { int CWCheatEngine::GetAddress(int value) { //Returns static address used by ppsspp. Some games may not like this, and causes cheats to not work without offset int address = (value + 0x08800000) & 0x3FFFFFFF; - if (gameTitle == "ULUS10563" || gameTitle == "ULJS-00351" || gameTitle == "NPJH50352" ) //Offset to make God Eater Burst codes work - address -= 0x7EF00; return address; }