From fb9be12cab1e88f68f2f62a13f220f8c5c9fab1b Mon Sep 17 00:00:00 2001 From: Volodymyr Patuta <90917-fiplox@users.noreply.framagit.org> Date: Sat, 12 Dec 2020 22:49:18 +0100 Subject: [PATCH] use color is 0 by default --- window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.c b/window.c index 62e330d..aab38aa 100644 --- a/window.c +++ b/window.c @@ -32,7 +32,7 @@ static GLuint _screenId = 0; static surface_t * _sphere = NULL; /* des variable d'états pour activer/désactiver des options de rendu */ -static int _use_tex = 1, _use_color = 1, _use_lighting = 1; +static int _use_tex = 1, _use_color = 0, _use_lighting = 1; /*!\brief on peut bouger la caméra vers le haut et vers le bas avec cette variable */ static float _ycam = 1.0f;