commit 5582816943c1ce13364d578758e91df543ae547c
parent 5807e22fefaddbc71d6d610feb7aa524004eb694
Author: neauoire <aliceffekt@gmail.com>
Date: Sun, 24 Oct 2021 09:09:58 -0700
Removed unecessary error
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/src/uxnasm.c b/src/uxnasm.c
@@ -110,7 +110,6 @@ static void
pushbyte(Uint8 b, int lit)
{
if(lit) pushbyte(findopcode("LIT"), 0);
- if(p.ptr > LENGTH) fprintf(stderr, "--- Out of bounds(%04x:%02x)\n", p.ptr, b);
p.data[p.ptr++] = b;
p.length = p.ptr;
}