Fix Eevee error message

That said, this should be informed to the user, not printed in the console.
This commit is contained in:
Dalai Felinto 2018-01-25 10:59:41 -02:00
parent c42fc19a8a
commit 6743308e59
1 changed files with 1 additions and 1 deletions

View File

@ -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;