Disable div32 matching for Star Wars I - Racer. Fixes the invisible

suns.
This commit is contained in:
Flyinghead 2018-07-13 23:24:47 +02:00
parent f13b366e8d
commit 4fd233aca0
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}