From 74c0980d44c4f71c15afd85f8650feb7f1f4bc19 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Tue, 28 Aug 2018 21:41:16 +0700 Subject: [PATCH] Enable hack_texrect_shade_alpha for Bottom of the 9th. Fixed bottom of the 9th: no more intro and main title gfx (regression) #1888 --- src/RSP.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/RSP.cpp b/src/RSP.cpp index e92d1c74..e8262ab8 100644 --- a/src/RSP.cpp +++ b/src/RSP.cpp @@ -307,7 +307,8 @@ void RSP_Init() config.generalEmulation.hacks |= hack_scoreboardJ; else if (strstr(RSP.romname, (const char *)"MarioTennis") != nullptr) config.generalEmulation.hacks |= hack_scoreboard; - else if (strstr(RSP.romname, (const char *)"POKEMON STADIUM 2") != nullptr) + else if (strstr(RSP.romname, (const char *)"POKEMON STADIUM 2") != nullptr || + strstr(RSP.romname, (const char *)"Bottom of the 9th") != nullptr) config.generalEmulation.hacks |= hack_texrect_shade_alpha; else if (strstr(RSP.romname, (const char *)"THE LEGEND OF ZELDA") != nullptr || strstr(RSP.romname, (const char *)"ZELDA MASTER QUEST") != nullptr)