From cf92191177cfeee99b7971d6dd02b3dce027d62d Mon Sep 17 00:00:00 2001 From: jonny_jr9 Date: Mon, 4 Dec 2023 22:58:08 +0100 Subject: [PATCH] Fix #2 random segfault after growing see issue for more details https://github.com/Jonny999999/snake-pp/issues/2 --- src/game.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index 2dd515e..7cd36a7 100644 --- a/src/game.c +++ b/src/game.c @@ -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();