1
0

Fixed member construction order.

This commit is contained in:
madmaxoft 2014-04-12 00:24:35 +02:00
parent 8bcb176a19
commit 5bc5272a4e

View File

@ -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)
{
}
} ;