Browse code

Removed unecessary error

neauoire authored on 24/10/2021 16:09:58
Showing 1 changed files
... ...
@@ -110,7 +110,6 @@ static void
110 110
 pushbyte(Uint8 b, int lit)
111 111
 {
112 112
 	if(lit) pushbyte(findopcode("LIT"), 0);
113
-	if(p.ptr > LENGTH) fprintf(stderr, "--- Out of bounds(%04x:%02x)\n", p.ptr, b);
114 113
 	p.data[p.ptr++] = b;
115 114
 	p.length = p.ptr;
116 115
 }