Skip to main content

The Power of Pride Bundle 2026 — $10 PWYC Edition
On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

The level of detail achieved with the Oscar64 compiler is incredible. I need to investigate how you manage to multiplex the two top sprites and reuse them two more times. I'm starting a game and I can't seem to reuse the top sprite immediately below it without adding several scanlines. Seeing your game, I realize it's possible, and I'll continue working on it.

Thank you very much for your reply.

The trick is to change the y position inside the sprite, it will only take effect once the sprite is drawn, and to use the screen pointer address to change the sprite images on the end of the bottom line of the upper sprite, and not change the sprite image pointers for each individual sprite.

Oh, nice trick. Thank you so much.