1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 02:55:20 +00:00

Fixed a bug with the .incbin command

git-svn-id: svn://svn.cc65.org/cc65/trunk@697 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-04-30 15:42:52 +00:00
parent b28672246a
commit abb1362389

View File

@ -892,7 +892,7 @@ static void DoIncBin (void)
}
/* Insert it into the output */
EmitData (Buf, Count);
EmitData (Buf, BytesRead);
/* Keep the counters current */
Count -= BytesRead;