mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix the cpcemu images not recognized as such.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// /***************************************************************************
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
@@ -54,7 +54,7 @@ namespace DiscImageChef.DiscImages
|
||||
DicConsole.DebugWriteLine("CPCDSK plugin", "header.magic = \"{0}\"",
|
||||
StringHandlers.CToString(header.magic));
|
||||
|
||||
return cpcdskId.SequenceEqual(header.magic) || edskId.SequenceEqual(header.magic) ||
|
||||
return cpcdskId.SequenceEqual(header.magic.Take(cpcdskId.Length)) || edskId.SequenceEqual(header.magic) ||
|
||||
du54Id.SequenceEqual(header.magic);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user