From 6743308e5980dc86d1eca0ebefe2d23720e5a06d Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Thu, 25 Jan 2018 10:59:41 -0200 Subject: [PATCH] Fix Eevee error message That said, this should be informed to the user, not printed in the console. --- source/blender/draw/engines/eevee/eevee_lights.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/draw/engines/eevee/eevee_lights.c b/source/blender/draw/engines/eevee/eevee_lights.c index 34bbcb31880..69b58bf9670 100644 --- a/source/blender/draw/engines/eevee/eevee_lights.c +++ b/source/blender/draw/engines/eevee/eevee_lights.c @@ -289,7 +289,7 @@ void EEVEE_lights_cache_add(EEVEE_ViewLayerData *sldata, Object *ob) /* Step 1 find all lamps in the scene and setup them */ if (linfo->num_light >= MAX_LIGHT) { - printf("Too much lamps in the scene !!!\n"); + printf("Too many lamps in the scene !!!\n"); } else { Lamp *la = (Lamp *)ob->data;