From a5f470cffb23bd854414297aef3edba8483bf6dc Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 14 Jul 2020 16:43:25 +0100 Subject: [PATCH] Fix detecting Neo Geo CD. --- Aaru.Core/Media/Detection/MMC.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Aaru.Core/Media/Detection/MMC.cs b/Aaru.Core/Media/Detection/MMC.cs index c772798ee..341f30ad3 100644 --- a/Aaru.Core/Media/Detection/MMC.cs +++ b/Aaru.Core/Media/Detection/MMC.cs @@ -1671,6 +1671,9 @@ namespace Aaru.Core.Media.Detection // More than 3 entries if(split.Length != 3) { + if(line[0] < 0x20) + break; + correctNeoGeoCd = false; break;