From e5b91a8d97f1f4af295b001708f434dda5ced983 Mon Sep 17 00:00:00 2001 From: faketruth Date: Sat, 10 Mar 2012 13:49:40 +0000 Subject: Was using "#else if" which is not valid apparently, now using "#elif" git-svn-id: http://mc-server.googlecode.com/svn/trunk@391 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cChunk.inl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/cChunk.inl.h') diff --git a/source/cChunk.inl.h b/source/cChunk.inl.h index 0f0c25c09..69c3c4bbe 100644 --- a/source/cChunk.inl.h +++ b/source/cChunk.inl.h @@ -40,7 +40,7 @@ char cChunk::GetNibble(char* a_Buffer, int x, int y, int z) const int cindex = MakeIndexNoCheck(x, y, z)/2; #if AXIS_ORDER == AXIS_ORDER_XZY if( (x & 1) == 0 ) -#else if AXIS_ORDER == AXIS_ORDER_YZX +#elif AXIS_ORDER == AXIS_ORDER_YZX if( (y & 1) == 0 ) #endif { // First half byte @@ -89,7 +89,7 @@ void cChunk::SetNibble(char* a_Buffer, int x, int y, int z, char light) int cindex = MakeIndexNoCheck(x, y, z)/2; #if AXIS_ORDER == AXIS_ORDER_XZY if( (x & 1) == 0 ) -#else if AXIS_ORDER == AXIS_ORDER_YZX +#elif AXIS_ORDER == AXIS_ORDER_YZX if( (y & 1) == 0 ) #endif { // First half byte -- cgit v1.2.3