TETRAEDGE: Remove repeated value copy in assignment

This commit is contained in:
Matthew Duggan 2023-02-24 11:44:26 +09:00
parent ba1836aacf
commit d093854bc4

View File

@ -83,7 +83,6 @@ TeMaterial &TeMaterial::operator=(const TeMaterial &other) {
_enableLights = other._enableLights;
_shininess = other._shininess;
_mode = other._mode;
_enableLights = other._enableLights;
_isShadowTexture = other._isShadowTexture;
return *this;