--- Frodo4/Src/1541t64.cpp 2004/01/14 16:54:46 1.6 +++ Frodo4/Src/1541t64.cpp 2004/08/30 13:55:30 1.7 @@ -545,7 +545,12 @@ void ArchDrive::Reset(void) static bool is_t64_header(const uint8 *header) { - return memcmp(header, "C64S tape file", 14) == 0; + if (memcmp(header, "C64S tape file", 14) == 0 + || memcmp(header, "C64 tape image", 14) == 0 + || memcmp(header, "C64S tape image", 15) == 0) + return true; + else + return false; } static bool is_lynx_header(const uint8 *header)