Removed unecessary error

This commit is contained in:
neauoire 2021-10-24 09:09:58 -07:00
parent 5807e22fef
commit 5582816943
1 changed files with 0 additions and 1 deletions

View File

@ -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;
}