--- Frodo4/Src/1541t64.cpp 2004/01/14 16:54:46 1.6 +++ Frodo4/Src/1541t64.cpp 2005/06/27 19:55:48 1.8 @@ -1,7 +1,7 @@ /* * 1541t64.cpp - 1541 emulation in archive-type files (.t64/LYNX/.p00) * - * Frodo (C) Copyright 1994-2001 Christian Bauer + * Frodo (C) 1994-1997,2002-2005 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -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)