(uxnasm) Fixed issue with skipped last token in include

This commit is contained in:
Devine Lu Linvega 2024-04-03 19:19:26 -07:00
parent 364172ff5b
commit 8e8b179a25
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 *