From de306d9f798a91b44f73b33cb2709b6194afce21 Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Mon, 19 Aug 2013 19:43:28 +0100 Subject: Fixed uninitialised thingummies --- source/Chunk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/Chunk.h b/source/Chunk.h index 6e8fe5cbf..d6a4061aa 100644 --- a/source/Chunk.h +++ b/source/Chunk.h @@ -330,7 +330,7 @@ private: Int64 m_Tick; sSetBlockQueueItem(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Int64 a_Tick) : - m_RelX(a_RelX), m_RelY(a_RelY), m_RelZ(a_RelZ) + m_RelX(a_RelX), m_RelY(a_RelY), m_RelZ(a_RelZ), m_BlockType(a_BlockType), m_BlockMeta(a_BlockMeta) { } } ; -- cgit v1.2.3