Fix #2 random segfault after growing

see issue for more details
https://github.com/Jonny999999/snake-pp/issues/2
This commit is contained in:
jonny_jr9 2023-12-04 22:58:08 +01:00
parent ad1dd7f5c3
commit cf92191177

View File

@ -105,9 +105,10 @@ void runGameCycle()
//--- handle food ---
if (checkEaten()) {
LOGI("game: picked up food at x=%d y=%d -> growing, placing food\n", game.foodX, game.foodY);
// NOTE: order of place and grow is relevant, otherwise function in food.c will access invalid memory
placeFood();
snakeGrow();
placeFood();
}
}
//--- update frame ---
//renderGame();