diff --git a/src/tests/GodRaysSampler_Test.cpp b/src/tests/GodRaysSampler_Test.cpp index f4a0c97..9f1e797 100644 --- a/src/tests/GodRaysSampler_Test.cpp +++ b/src/tests/GodRaysSampler_Test.cpp @@ -65,6 +65,7 @@ class GodRayLightSource: public LightSource virtual bool getLightsAt(std::vector &result, const Vector3 &location) const override { LightComponent light; + light.altered = true; light.color = Color(fabs(location.x), fabs(location.y), fabs(location.z)); result.push_back(light); return true;