X-Git-Url: https://git.jsancho.org/?p=lugaru.git;a=blobdiff_plain;f=Source%2FGraphic%2FModels.cpp;h=c58e6910d82a14ee8b94ef9bb0d352692395d20a;hp=d414dbde0f343b70a19c18bc7e2c80bdb39d538d;hb=8b8230c564e1f0063b381e77bf6222af9f2e678d;hpb=d5f64d3689e1ce594e22ad0f6d372cee143872fd diff --git a/Source/Graphic/Models.cpp b/Source/Graphic/Models.cpp index d414dbd..c58e691 100644 --- a/Source/Graphic/Models.cpp +++ b/Source/Graphic/Models.cpp @@ -1178,19 +1178,15 @@ void Model::deallocate() Model::Model() : vertexNum(0), - type(0), + type(nothing), owner(0), vertex(0), normals(0), - vArray(0) + vArray(0), + color(0), + boundingspherecenter(), + boundingsphereradius(0), + flat(false) { memset(&modelTexture, 0, sizeof(modelTexture)); - color = 0; - - boundingspherecenter = 0; - boundingsphereradius = 0; - - flat = 0; - - type = nothing; }