From cc42888c1ba5af100fbf1861ed998cfa528680ba Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Sat, 13 Nov 2021 22:43:06 +0700 Subject: [PATCH] Enable noDepthFrameBuffers hack for Extreme G 2 Fixed #2601 Extreme-G 2 XG 2 (U) - Incorrect Loading Screen --- src/RSP.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/RSP.cpp b/src/RSP.cpp index 83a1fae8..40aa8b8b 100644 --- a/src/RSP.cpp +++ b/src/RSP.cpp @@ -347,6 +347,9 @@ void RSP_Init() config.generalEmulation.hacks |= hack_WCWNitro; else if (strstr(RSP.romname, (const char *)"MarioTennis") != nullptr) config.generalEmulation.hacks |= hack_fbTextureOffset; + else if (strstr(RSP.romname, (const char *)"Extreme G 2") != nullptr || + strstr(RSP.romname, (const char *)"\xb4\xb8\xbd\xc4\xd8\xb0\xd1\x47\x32") != nullptr) + config.generalEmulation.hacks |= hack_noDepthFrameBuffers; api().FindPluginPath(RSP.pluginpath);