summaryrefslogtreecommitdiff
path: root/src/snap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/snap.c')
-rw-r--r--src/snap.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/snap.c b/src/snap.c
index d9e7e6a..91680e8 100644
--- a/src/snap.c
+++ b/src/snap.c
@@ -104,7 +104,6 @@ int TAPLoad(FILE *fp, Z80Byte id, Z80Word *addr, Z80Word *len, SNAP_Poke poke)
if (!fp)
{
- Debug("No file to load!\n");
return FALSE;
}
@@ -121,13 +120,10 @@ int TAPLoad(FILE *fp, Z80Byte id, Z80Word *addr, Z80Word *len, SNAP_Poke poke)
type=GetByte(fp);
csum=id;
- Debug("blen=%u type=%u id=%u\n",blen,type,id);
-
/* Have we found the requested block?
*/
if (id==type)
{
- Debug("Matched type\n");
/* Knock of block type
*/
blen--;
@@ -161,7 +157,6 @@ int TAPLoad(FILE *fp, Z80Byte id, Z80Word *addr, Z80Word *len, SNAP_Poke poke)
/* Check the checksum
*/
- Debug("csum = %d, tape csum = %d\n",csum,tape_csum);
return csum==tape_csum;
}
else