Browse Source

Remove redundant default parameter.[ci skip]

aster 11 years ago
parent
commit
1ac9680c52
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Engine/Urho2D/DrawableProxy2D.cpp

+ 1 - 1
Source/Engine/Urho2D/DrawableProxy2D.cpp

@@ -81,7 +81,7 @@ void DrawableProxy2D::UpdateGeometry(const FrameInfo& frame)
     if (indexBuffer_->GetIndexCount() < indexCount_)
     {
         bool largeIndices = vertexCount_ > 0xffff;
-        indexBuffer_->SetSize(indexCount_, largeIndices, false);
+        indexBuffer_->SetSize(indexCount_, largeIndices);
         void* buffer = indexBuffer_->Lock(0, indexCount_, true);
         if (buffer)
         {