[A83] Re: How do I erase a non-XORed sprite?
[Prev][Next][Index][Thread]
[A83] Re: How do I erase a non-XORed sprite?
> I modded ion's putsprite to be ORed, but I can't erase
it? I've tried masking
> it, and just drawing a blank over it... Now what do I do
to erase it?
You will never delete anything with OR, because its truth
table will always give one if any of the bits of its input
are set. You have to use AND. Set the bits you want to
preserve, and clear those you want to see cleared in the
final screen.
PG
References: