Posted By
![](/images/g.gif) Csabo on 2016-10-16 21:48:19
| Re: BASIC Balloon Breaker
Sure. So, it's basically as I said above: the only bit you want to avoid changing is $40. This you can keep with the AND operator.
POKE 65287, PEEK(65287) AND 64 OR #
This is the single POKE you need. It will "save" the $40/64 bit, and let you OR any value. For multicolor ($10) + 256 chars ($80) + normal horizontal scroll value ($08), so that's $98, 152 in decimal.
|