Disable Div matching for Record of Lodoss War

This commit is contained in:
Flyinghead 2018-08-14 09:17:22 +02:00
parent 11738c9b1f
commit a7cfa1f737
1 changed files with 5 additions and 1 deletions

View File

@ -146,7 +146,11 @@ void LoadSpecialSettings()
// Demolition Racer
|| !strncmp("T15112N", reios_product_number, 7)
// Star Wars - Episode I - Racer (United Kingdom)
|| !strncmp("T23001D", reios_product_number, 7))
|| !strncmp("T23001D", reios_product_number, 7)
// Record of Lodoss War (EU)
|| !strncmp("T7012D", reios_product_number, 6)
// Record of Lodoss War (USA)
|| !strncmp("T40218N", reios_product_number, 7))
settings.dynarec.DisableDivMatching = true;
}