Fix #2 random segfault after growing
see issue for more details https://github.com/Jonny999999/snake-pp/issues/2
This commit is contained in:
parent
ad1dd7f5c3
commit
cf92191177
@ -105,9 +105,10 @@ void runGameCycle()
|
|||||||
//--- handle food ---
|
//--- handle food ---
|
||||||
if (checkEaten()) {
|
if (checkEaten()) {
|
||||||
LOGI("game: picked up food at x=%d y=%d -> growing, placing food\n", game.foodX, game.foodY);
|
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();
|
snakeGrow();
|
||||||
placeFood();
|
}
|
||||||
}
|
|
||||||
|
|
||||||
//--- update frame ---
|
//--- update frame ---
|
||||||
//renderGame();
|
//renderGame();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user