1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Add end of sprite byte

git-svn-id: svn://svn.cc65.org/cc65/trunk@5899 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
karri 2012-11-03 20:13:25 +00:00
parent 7862c3f193
commit 77e6bb483f

View File

@ -258,6 +258,9 @@ StrBuf* GenLynxSprite (const Bitmap* B, const Collection* A)
if ((OY == 0) && (OX == 0)) {
/* Trivial case only one quadrant */
/* Mark end of sprite */
SB_AppendChar (D, 0);
/* Return the converted bitmap */
return D;
}