From 0f945b69cc55f886f1685c1277ecbd0f6fa1277b Mon Sep 17 00:00:00 2001 From: Godzil Date: Mon, 9 Mar 2020 15:58:59 +0000 Subject: [PATCH] World default group now have a name! Fancy! --- source/world.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/world.cpp b/source/world.cpp index 598f2de..602ea24 100644 --- a/source/world.cpp +++ b/source/world.cpp @@ -22,7 +22,7 @@ extern "C" { #define MIN_ALLOC (2) -World::World() : lightCount(0) +World::World() : lightCount(0), worldGroup("World") { this->allocatedLightCount = MIN_ALLOC; this->lightList = (Light **)calloc(sizeof(Light *), MIN_ALLOC);