From 26d5a3f6ae59c7b4f70612e1d2eee3424b84b5d4 Mon Sep 17 00:00:00 2001 From: Jean Sirmai Date: Fri, 27 Oct 2023 17:16:25 +0200 Subject: [PATCH] =?UTF-8?q?WIP:=20=C3=89trange:=20=C3=A7a=20marche=20bien?= =?UTF-8?q?=20pour=20l'adresse=20(3)=20=20=20ligne=20906=20=20=20(mais=20p?= =?UTF-8?q?as=200,=201,=202)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/graphics/graphics.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphics/graphics.c b/src/graphics/graphics.c index 1aad131..a9ad608 100644 --- a/src/graphics/graphics.c +++ b/src/graphics/graphics.c @@ -913,7 +913,7 @@ void __attribute__((optimize("no-unroll-loops"))) main_test_graphics (void) void *new_arrows_lines_ptr = g_realloc(buffer_lines_origin, buffer_lines_size * sizeof(GLfloat)); if (new_arrows_lines_ptr) buffer_lines_origin = new_arrows_lines_ptr; - else perror("In experience, can't re_allocate for arrow lines buffer.\n"); + else perror("In experience, can't re_allocate for arrows lines buffer.\n"); if (1) printf(">>> buffer_lines_size = %d\n", buffer_lines_size); @@ -929,7 +929,7 @@ void __attribute__((optimize("no-unroll-loops"))) main_test_graphics (void) void *new_arrows_vertex_ptr = g_realloc(buffer_vertex_origin, buffer_vertex_size * sizeof(GLfloat)); if (new_arrows_vertex_ptr) buffer_vertex_origin = new_arrows_vertex_ptr; - else perror("In experience, can't re_allocate for arrow vertex buffer.\n"); + else perror("In experience, can't re_allocate for arrows vertex buffer.\n"); if (1) printf(">>> buffer_vertex_size = %d\n", buffer_vertex_size);