1
0

Fixed minor style issues

This commit is contained in:
Tycho
2014-05-21 18:33:54 +01:00
parent 8a0d3f7921
commit cdd3d11496
4 changed files with 8 additions and 8 deletions

View File

@@ -282,10 +282,10 @@ void cChunk::SetAllData(
CalculateHeightmap(a_BlockTypes);
}
m_ChunkBuffer.SetBlocks (a_BlockTypes);
m_ChunkBuffer.SetMeta (a_BlockMeta);
m_ChunkBuffer.SetLight (a_BlockLight);
m_ChunkBuffer.SetSkyLight (a_BlockSkyLight);
m_ChunkBuffer.SetBlocks(a_BlockTypes);
m_ChunkBuffer.SetMeta(a_BlockMeta);
m_ChunkBuffer.SetLight(a_BlockLight);
m_ChunkBuffer.SetSkyLight(a_BlockSkyLight);
m_IsLightValid = (a_BlockLight != NULL) && (a_BlockSkyLight != NULL);