From e642e0216cd60c4899d1b15b8f76d3ad81811942 Mon Sep 17 00:00:00 2001 From: Asnivor Date: Sat, 28 Apr 2018 17:07:59 +0100 Subject: [PATCH] ZXHawk: improved detection of cpcemu dsk files --- .../Computers/SinclairSpectrum/Media/Disk/CPCFloppyDisk.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Disk/CPCFloppyDisk.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Disk/CPCFloppyDisk.cs index 4835540657..99818cc932 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Disk/CPCFloppyDisk.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Disk/CPCFloppyDisk.cs @@ -31,7 +31,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum // look for standard magic string string ident = Encoding.ASCII.GetString(data, 0, 16); - if (!ident.ToUpper().Contains("MV - CPCEMU")) + if (!ident.ToUpper().Contains("MV - CPC")) { // incorrect format return false;