On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Ah yeah that’s an issue with the gba itself basically.  You can have up to 128 sprites at once, so depending on how long the snake is (each segment has one sprite) and how much text is on screen (it also uses sprites) you can basically just run out.

So the issue is that you basically just got the snake long enough that the gba simply can’t display it anymore. If you also just get it more than 128 segments long the same thing happens. 

Wish I could fix it, there are a couple workarounds but they’re a bit out of scope for me unfortunately 

After mucking about with it for a bit, the snake is rather prone to killing itself in the top right corner, so I managed wins with 2 and 3 friends lost, which does not crash, 4 or higher does crash until 13 being ok again. Pretty sure the longer win message crashes it just barely.

And yeah, getting around that limit can be painful at times, doing the snake on a background layer would help, but that tends to take more time to code.