From 0261a4c2e89b1cb3a912611e39d34c83531650d1 Mon Sep 17 00:00:00 2001 From: Adrien 'neox' Bourmault Date: Tue, 12 Dec 2023 18:42:01 +0100 Subject: [PATCH] WIP: cleanup --- src/graphics/graphics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/graphics.c b/src/graphics/graphics.c index cd9b25a..5d0b6a4 100644 --- a/src/graphics/graphics.c +++ b/src/graphics/graphics.c @@ -758,7 +758,7 @@ void main_test_graphics (void) srand(time(NULL)); int rand(void); void srand(unsigned int seed); - int randomize = 0, console = 0, arrows_nb = 0, space_X = 1, space_Y = 1, space_Z = 1; + int randomize = 10, console = 0, arrows_nb = 0, space_X = 1, space_Y = 1, space_Z = 1; if (randomize) { space_X = 1 + rand() % randomize; space_Y = 1 + rand() % randomize;