diff options
author | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 16:00:31 +0100 |
---|---|---|
committer | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 16:00:31 +0100 |
commit | 38f808ac3d09cbb5bf437243f4b050e196fa582c (patch) | |
tree | 7f2be78caedb090c709bd28d96c9fd851bcab592 /src/ChunkDef.h | |
parent | added FORCE_32 option (diff) | |
download | cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.gz cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.bz2 cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.lz cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.xz cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.tar.zst cuberite-38f808ac3d09cbb5bf437243f4b050e196fa582c.zip |
Diffstat (limited to 'src/ChunkDef.h')
-rw-r--r-- | src/ChunkDef.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChunkDef.h b/src/ChunkDef.h index 8c37e7907..c6f6c50b3 100644 --- a/src/ChunkDef.h +++ b/src/ChunkDef.h @@ -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 ) { BlockToChunk(a_X, a_Z, a_ChunkX, a_ChunkZ); |