C64: The T64 format was never supported, but at least make the core aware of it
This commit is contained in:
parent
2c804cab34
commit
55145ff7ba
|
@ -27,7 +27,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
|||
return C64Format.G64;
|
||||
}
|
||||
|
||||
if (header.StartsWith("C64S tape image "))
|
||||
if (header.StartsWith("C64S tape image ") || header.StartsWith("C64 tape image f"))
|
||||
{
|
||||
return C64Format.T64;
|
||||
}
|
||||
|
|
|
@ -97,6 +97,11 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Media
|
|||
result = new Tape(version, tapeFile, 20, tapeFile.Length);
|
||||
}
|
||||
|
||||
else if (Encoding.ASCII.GetString(tapeFile, 0, 0x12) == "C64 tape image file")
|
||||
{
|
||||
throw new Exception("The T64 format is not yet supported.");
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue