diff options
author | Mattes D <github@xoft.cz> | 2014-08-21 22:39:53 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-08-21 22:39:53 +0200 |
commit | 64fec204c4c5062461a7188b58026d062519b417 (patch) | |
tree | 9ffc538cdb5bd581362542a3fa131efb96b4d9db /src/LightingThread.cpp | |
parent | cSetChunkData: Added missing initializers. (diff) | |
download | cuberite-64fec204c4c5062461a7188b58026d062519b417.tar cuberite-64fec204c4c5062461a7188b58026d062519b417.tar.gz cuberite-64fec204c4c5062461a7188b58026d062519b417.tar.bz2 cuberite-64fec204c4c5062461a7188b58026d062519b417.tar.lz cuberite-64fec204c4c5062461a7188b58026d062519b417.tar.xz cuberite-64fec204c4c5062461a7188b58026d062519b417.tar.zst cuberite-64fec204c4c5062461a7188b58026d062519b417.zip |
Diffstat (limited to '')
-rw-r--r-- | src/LightingThread.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/LightingThread.cpp b/src/LightingThread.cpp index 3fbbee6b5..652b03e46 100644 --- a/src/LightingThread.cpp +++ b/src/LightingThread.cpp @@ -73,6 +73,8 @@ 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_ReadingChunkX(0), + m_ReadingChunkZ(0), m_MaxHeight(0), m_BlockTypes(a_BlockTypes), m_HeightMap(a_HeightMap) @@ -89,7 +91,9 @@ public: cLightingThread::cLightingThread(void) : super("cLightingThread"), - m_World(NULL) + m_World(NULL), + m_MaxHeight(0), + m_NumSeeds(0) { } |