1
0
Fork 0

Fixed Chunkdef warnings

This commit is contained in:
Tycho 2014-03-11 12:41:18 -07:00
parent 0fc4a1ee06
commit 80cc824c0c
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ public:
}
inline static unsigned int MakeIndex(int x, int y, int z )
inline static int MakeIndex(int x, int y, int z )
{
if (
(x < Width) && (x > -1) &&
@ -271,7 +271,7 @@ public:
}
int Index = MakeIndexNoCheck(x, y, z);
a_Buffer[Index / 2] = (
a_Buffer[Index / 2] = static_cast<NIBBLETYPE>(
(a_Buffer[Index / 2] & (0xf0 >> ((Index & 1) * 4))) | // The untouched nibble
((a_Nibble & 0x0f) << ((Index & 1) * 4)) // The nibble being set
);