Fixed warnings.

This commit is contained in:
Leonardo Zide
2023-12-28 11:42:28 -08:00
parent 9b4e6d6a65
commit d77ca7357f
2 changed files with 4 additions and 8 deletions
+1 -5
View File
@@ -32,16 +32,12 @@ lcLight::lcLight(const lcVector3& Position, lcLightType LightType)
void lcLight::UpdateLightType()
{
lcVector2 Size;
lcVector2 Size(0.0f, 0.0f);
switch (mLightType)
{
case lcLightType::Point:
Size = lcVector2(0.0f, 0.0f);
break;
case lcLightType::Spot:
Size = lcVector2(0.0f, 0.0f);
break;
case lcLightType::Directional: