(uxnasm) Fixed issue with skipped last token in include

This commit is contained in:
Devine Lu Linvega 2024-04-03 19:20:10 -07:00
parent 9564868464
commit a74df86d06
1 changed files with 2 additions and 1 deletions

View File

@ -149,7 +149,8 @@ walkfile(FILE *f, Context *ctx)
else
return error_asm("Token too long");
}
return 1;
*cptr++ = 0;
return parse(token, f, ctx);
}
static char *