1
0

Fixed compilation in VC2008.

Also removed an unused inline header file (yuck).
This commit is contained in:
madmaxoft
2013-12-30 17:41:59 +01:00
parent d724241407
commit ee15d4e08e
7 changed files with 13 additions and 79 deletions

View File

@@ -180,7 +180,7 @@ public:
/// Converts absolute block coords into relative (chunk + block) coords:
inline static void AbsoluteToRelative(/* in-out */ int & a_X, int& a_Y, int & a_Z, /* out */ int & a_ChunkX, int & a_ChunkZ )
inline static void AbsoluteToRelative(/* in-out */ int & a_X, int & a_Y, int & a_Z, /* out */ int & a_ChunkX, int & a_ChunkZ )
{
UNUSED(a_Y);
BlockToChunk(a_X, a_Z, a_ChunkX, a_ChunkZ);