1
0

reordered initalisation order at src/Generating/Cave.h line 73

This commit is contained in:
Tycho Bickerstaff 2013-12-08 00:08:25 +00:00
parent e32a224fe3
commit 2942e57f93

View File

@ -70,8 +70,8 @@ public:
cStructGenWormNestCaves(int a_Seed, int a_Size = 64, int a_Grid = 96, int a_MaxOffset = 128) :
m_Noise(a_Seed),
m_Size(a_Size),
m_Grid(a_Grid),
m_MaxOffset(a_MaxOffset)
m_MaxOffset(a_MaxOffset),
m_Grid(a_Grid)
{
}