From 4fd233aca0a537b992b4b13f02422e3229778620 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Fri, 13 Jul 2018 23:24:47 +0200 Subject: [PATCH] Disable div32 matching for Star Wars I - Racer. Fixes the invisible suns. --- core/nullDC.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/nullDC.cpp b/core/nullDC.cpp index d78d0f48a..c1bbeb748 100755 --- a/core/nullDC.cpp +++ b/core/nullDC.cpp @@ -182,7 +182,9 @@ void LoadSpecialSettings() // Pro Pinball Trilogy if (!strncmp("T30701D", reios_product_number, 7) // Demolition Racer - || !strncmp("T15112N", reios_product_number, 7)) + || !strncmp("T15112N", reios_product_number, 7) + // Star Wars - Episode I - Racer (United Kingdom) + || !strncmp("T23001D", reios_product_number, 7)) settings.dynarec.DisableDivMatching = true; }