Skip to content

Commit

Permalink
Fix broken initialization in VertexCache default constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kovalenko committed Oct 9, 2014
1 parent fea2c63 commit 6747a19
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Layers/xrRender/VertexCache.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#include "stdafx.h"
#include "VertexCache.h"

VertexCache::VertexCache()
VertexCache::VertexCache() : VertexCache(16)
{
VertexCache(16);
}


Expand Down

0 comments on commit 6747a19

Please sign in to comment.