From: Alan Cox Date: Sat, 20 Oct 2018 13:54:27 +0000 (+0100) Subject: fweep: remove a bit of surplus debug X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c4cf4859af2c7cc65638b1462ec65c0cf8b8a202;p=FUZIX.git fweep: remove a bit of surplus debug --- diff --git a/Applications/games/fweep.c b/Applications/games/fweep.c index 18d75a73..558ca7dd 100644 --- a/Applications/games/fweep.c +++ b/Applications/games/fweep.c @@ -784,13 +784,11 @@ void storei(uint16_t value) void enter_routine(uint32_t address, boolean stored, int argc) { -// fprintf(stderr, "enter_routine\n"); int c = read8(address); int i; if (frameptr == FRAMESIZE - 1) panic("out of frames.\n"); -// fprintf(stderr, "Enter routine.\n"); /* FIXME: use pointers */ frames[frameptr].pc = program_counter; frames[++frameptr].argc = argc; @@ -800,7 +798,6 @@ void enter_routine(uint32_t address, boolean stored, int argc) if (frameptr > framemax) framemax = frameptr; -// fprintf(stderr, "Pushing %d bytes.\n", c); if (VERSION < 5) { for (i = 0; i < c; i++) { pushstack(read16(program_counter));