From a7cfa1f737396b6395868a167fcdeb9f344875f2 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Tue, 14 Aug 2018 09:17:22 +0200 Subject: [PATCH] Disable Div matching for Record of Lodoss War --- core/nullDC.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/nullDC.cpp b/core/nullDC.cpp index d124673ef..f63b75a17 100755 --- a/core/nullDC.cpp +++ b/core/nullDC.cpp @@ -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; }