diff options
author | Ian C <ianc@noddybox.co.uk> | 2006-09-11 00:35:48 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2006-09-11 00:35:48 +0000 |
commit | e376b6d78f3037d2f26250d5a28b58f480f12ad3 (patch) | |
tree | a39fd9fa5c942fa90762b9833040cbdb616c3f91 /src/snap.c | |
parent | 855cd20abc5cdf48dc691ee2ab818ea85f6ecd04 (diff) |
Working well enough for Manic Miner now...
Diffstat (limited to 'src/snap.c')
-rw-r--r-- | src/snap.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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 |