ecere/3D/Mesh: Correction to warning fix; default.cf: Clang build fix on Debian
[sdk] / ecere / src / gfx / 3D / Mesh.ec
index 335ffe5..29815ed 100644 (file)
@@ -122,7 +122,7 @@ public:
    bool Allocate(MeshFeatures what, int nVertices, DisplaySystem displaySystem)
    {
       bool result = false;
-      if((!nVertices || this.nVertices == nVertices) && (!this.displaySystem || this.displaySystem == displaySystem))
+      if((!this.nVertices || this.nVertices == nVertices) && (!this.displaySystem || this.displaySystem == displaySystem))
       {
          flags |= what;
          this.nVertices = nVertices;