Fixed member construction order.
This commit is contained in:
parent
8bcb176a19
commit
5bc5272a4e
@ -76,9 +76,9 @@ public:
|
||||
HEIGHTTYPE * m_HeightMap; // 3x3 chunks of height map, organized as a single XZY blob of data (instead of 3x3 XZY blobs)
|
||||
|
||||
cReader(BLOCKTYPE * a_BlockTypes, HEIGHTTYPE * a_HeightMap) :
|
||||
m_MaxHeight(0),
|
||||
m_BlockTypes(a_BlockTypes),
|
||||
m_HeightMap(a_HeightMap),
|
||||
m_MaxHeight(0)
|
||||
m_HeightMap(a_HeightMap)
|
||||
{
|
||||
}
|
||||
} ;
|
||||
|
Loading…
Reference in New Issue
Block a user