From 89abb7925b56466c4565eb0e9a2fbceb808e8c56 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Sat, 7 Dec 2024 10:04:36 +0100 Subject: [PATCH] Pro Pinball needs copy to vram. remove Nightmare Creatures widescreen Issue #1763 --- core/cheats.cpp | 4 ++-- core/emulator.cpp | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/core/cheats.cpp b/core/cheats.cpp index a20059bf4..bf43ccbd4 100644 --- a/core/cheats.cpp +++ b/core/cheats.cpp @@ -165,8 +165,8 @@ const WidescreenCheat CheatManager::widescreen_cheats[] = { 0x43F00000, 0x3F400000, 0x3F800000 } }, // Napple Tale: Arsia in Daydream (JP) //crash { "MK-51178", nullptr, { 0x23AF00, 0x23B160, 0x144D40, 0x2105B4, 0x705B40 }, // { 0xBFAAAAAB, 0xBFAAAAAB, 0xBFAAAAAB, 0xBFAAAAAB, 0x44558000 } }, // NBA 2K2 - { "T9504M", nullptr, { 0xCDE848, 0xCDE844 }, { 0x3F400000, 0x3FA00000 } }, // Nightmare Creatures II (USA) - { "T-9502D-50", nullptr, { 0xBDE9B0, 0xBDE9C4 }, { 0x3F400000, 0x3FA00000 } }, // Nightmare Creatures II (PAL) +// { "T9504M", nullptr, { 0xCDE848, 0xCDE844 }, { 0x3F400000, 0x3FA00000 } }, // Nightmare Creatures II (USA) +// { "T-9502D-50", nullptr, { 0xBDE9B0, 0xBDE9C4 }, { 0x3F400000, 0x3FA00000 } }, // Nightmare Creatures II (PAL) { "MK-5110250", nullptr, { 0x87B5A4 }, { 0x43700000 } }, // Outtrigger (PAL) { "HDR-0118", nullptr, { 0x83E284 }, { 0x43700000 } }, // Outtrigger (JP) { "T15103D 50", nullptr, { 0x1EEE78 }, { 0x3F400000 } }, // PenPen (PAL) diff --git a/core/emulator.cpp b/core/emulator.cpp index 82ddfca1d..181bb619d 100644 --- a/core/emulator.cpp +++ b/core/emulator.cpp @@ -144,7 +144,9 @@ static void loadSpecialSettings() // Silent Scope (US) || prod_id == "T9507N" // Silent Scope (EU) - || prod_id == "T9505D") + || prod_id == "T9505D" + // Pro Pinball - Trilogy (EU) + || prod_id == "T30701D 50") { INFO_LOG(BOOT, "Enabling RTT Copy to VRAM for game %s", prod_id.c_str()); config::RenderToTextureBuffer.override(true);