From be1f06520ca6fb0c1f804c81d55858a57d3b86e6 Mon Sep 17 00:00:00 2001 From: changyong guo Date: Tue, 26 Jun 2018 00:31:05 +0800 Subject: fix block area rotation bug (#4243) fix mirror method bug in class cBlockArea. --- src/BlockArea.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BlockArea.cpp b/src/BlockArea.cpp index 9dce7e916..a991c9ed5 100644 --- a/src/BlockArea.cpp +++ b/src/BlockArea.cpp @@ -1200,7 +1200,7 @@ void cBlockArea::MirrorXY(void) int MaxZ = m_Size.z - 1; for (int y = 0; y < m_Size.y; y++) { - for (int z = 0; z <= HalfZ; z++) + for (int z = 0; z < HalfZ; z++) { for (int x = 0; x < m_Size.x; x++) { @@ -1255,7 +1255,7 @@ void cBlockArea::MirrorXZ(void) // We are guaranteed that both blocktypes and blockmetas exist; mirror both at the same time: int HalfY = m_Size.y / 2; int MaxY = m_Size.y - 1; - for (int y = 0; y <= HalfY; y++) + for (int y = 0; y < HalfY; y++) { for (int z = 0; z < m_Size.z; z++) { @@ -1316,7 +1316,7 @@ void cBlockArea::MirrorYZ(void) { for (int z = 0; z < m_Size.z; z++) { - for (int x = 0; x <= HalfX; x++) + for (int x = 0; x < HalfX; x++) { auto Idx1 = MakeIndex(x, y, z); auto Idx2 = MakeIndex(MaxX - x, y, z); -- cgit v1.2.3