fixed value for VLIR record table (points TO the last byte in the sector, not the next one)

git-svn-id: svn://svn.cc65.org/cc65/trunk@1930 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst 2003-02-06 00:23:37 +00:00
parent 533fb244cc
commit 443efb5f3a

View file

@ -96,7 +96,7 @@ int blocks,rest;
if (bytes==0)
AbEnd("couldn't read %s:%s\n",argv[i],strerror(errno));
blocks = bytes / 254;
rest = bytes % 254 + 2;
rest = bytes % 254 + 1;
if (rest>255) rest=255;
vlirtabt[j]=blocks+1; vlirtabs[j]=rest;
fwrite(buffer,1,(blocks+1)*254,outCVT);