1
0

VoronoiMap: Added a missing initializer.

Fixes CID 68410.
This commit is contained in:
madmaxoft 2014-06-23 17:06:38 +02:00
parent 6a77705d4e
commit 59270fd44d

View File

@ -14,7 +14,9 @@ cVoronoiMap::cVoronoiMap(int a_Seed, int a_CellSize) :
m_Noise1(a_Seed + 1),
m_Noise2(a_Seed + 2),
m_Noise3(a_Seed + 3),
m_CellSize(a_CellSize)
m_CellSize(a_CellSize),
m_CurrentCellX(9999999), // Cell coords that are definitely out of the range for normal generator, so that the first query will overwrite them
m_CurrentCellZ(9999999)
{
}