From 959797dbcff19bea14f59b6e2cc74378fcd03f52 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Tue, 7 May 2013 19:59:17 +0000 Subject: [PATCH] Replaced MIN / MAX with std::min and std::max git-svn-id: http://mc-server.googlecode.com/svn/trunk@1455 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/CraftingRecipes.cpp | 8 ++++---- source/LightingThread.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/source/CraftingRecipes.cpp b/source/CraftingRecipes.cpp index b47db7e5b..13a8ac1e0 100644 --- a/source/CraftingRecipes.cpp +++ b/source/CraftingRecipes.cpp @@ -583,10 +583,10 @@ cCraftingRecipes::cRecipe * cCraftingRecipes::FindRecipe(const cItem * a_Craftin { if (!a_CraftingGrid[x + y * a_GridWidth].IsEmpty()) { - GridRight = MAX(x, GridRight); - GridBottom = MAX(y, GridBottom); - GridLeft = MIN(x, GridLeft); - GridTop = MIN(y, GridTop); + GridRight = std::max(x, GridRight); + GridBottom = std::max(y, GridBottom); + GridLeft = std::min(x, GridLeft); + GridTop = std::min(y, GridTop); } } int GridWidth = GridRight - GridLeft + 1; diff --git a/source/LightingThread.cpp b/source/LightingThread.cpp index 5c39f731b..258fd7dd4 100644 --- a/source/LightingThread.cpp +++ b/source/LightingThread.cpp @@ -398,7 +398,7 @@ void cLightingThread::PrepareSkyLight(void) int Neighbor2 = m_HeightMap[idx - 1] + 1; // X - 1 int Neighbor3 = m_HeightMap[idx + cChunkDef::Width * 3] + 1; // Z + 1 int Neighbor4 = m_HeightMap[idx - cChunkDef::Width * 3] + 1; // Z - 1 - int MaxNeighbor = MAX(MAX(Neighbor1, Neighbor2), MAX(Neighbor3, Neighbor4)); // Maximum of the four neighbors + int MaxNeighbor = std::max(std::max(Neighbor1, Neighbor2), std::max(Neighbor3, Neighbor4)); // Maximum of the four neighbors // Fill the column from the top down to Current with all-light: for (int y = cChunkDef::Height - 1, Index = idx + y * BlocksPerYLayer; y >= Current; y--, Index -= BlocksPerYLayer)