# | Line 545 | Line 545 | void ArchDrive::Reset(void) | |
---|---|---|
545 | ||
546 | static bool is_t64_header(const uint8 *header) | |
547 | { | |
548 | < | return memcmp(header, "C64S tape file", 14) == 0; |
548 | > | if (memcmp(header, "C64S tape file", 14) == 0 |
549 | > | || memcmp(header, "C64 tape image", 14) == 0 |
550 | > | || memcmp(header, "C64S tape image", 15) == 0) |
551 | > | return true; |
552 | > | else |
553 | > | return false; |
554 | } | |
555 | ||
556 | static bool is_lynx_header(const uint8 *header) |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |