C64: The T64 format was never supported, but at least make the core aware of it

This commit is contained in:
SaxxonPike 2019-07-04 12:46:28 -05:00
parent 2c804cab34
commit 55145ff7ba
2 changed files with 6 additions and 1 deletions

View File

@ -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;
}

View File

@ -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;
}