From 0b24efeb005e293a026f2ac8666020cea8316578 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Wed, 14 Mar 2012 20:56:09 +0000 Subject: Split chunk data into separate arrays; decoupled most sources from cChunk.h dependency git-svn-id: http://mc-server.googlecode.com/svn/trunk@411 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cWorldGenerator_Test.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'source/cWorldGenerator_Test.cpp') diff --git a/source/cWorldGenerator_Test.cpp b/source/cWorldGenerator_Test.cpp index 37ac9025c..86a7b8388 100644 --- a/source/cWorldGenerator_Test.cpp +++ b/source/cWorldGenerator_Test.cpp @@ -2,7 +2,6 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "cWorldGenerator_Test.h" -#include "cChunk.h" #include "BlockID.h" @@ -11,10 +10,10 @@ void cWorldGenerator_Test::GenerateTerrain(int a_ChunkX, int a_ChunkY, int a_ChunkZ, char * a_BlockData) { - memset(a_BlockData, E_BLOCK_DIRT, cChunk::c_NumBlocks); - for(int x = 0; x < cChunk::c_ChunkWidth; x++) + memset(a_BlockData, E_BLOCK_DIRT, cChunkDef::NumBlocks); + for(int x = 0; x < cChunkDef::Width; x++) { - for(int z = 0; z < cChunk::c_ChunkWidth; z++) + for(int z = 0; z < cChunkDef::Width; z++) { a_BlockData[MakeIndex(x, 0, z)] = E_BLOCK_BEDROCK; } -- cgit v1.2.3