diff options
author | Mattes D <github@xoft.cz> | 2014-11-28 22:46:58 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-28 22:46:58 +0100 |
commit | 883230abbcc20a4a27e1d8909894be63dee75d43 (patch) | |
tree | ecbdc082281e820fc98a302add93400ba467dbd7 /src/Generating/CompoGenBiomal.cpp | |
parent | CMake: Fixed linux builds. (diff) | |
parent | Chunk: Fixed same-name iterators. (diff) | |
download | cuberite-883230abbcc20a4a27e1d8909894be63dee75d43.tar cuberite-883230abbcc20a4a27e1d8909894be63dee75d43.tar.gz cuberite-883230abbcc20a4a27e1d8909894be63dee75d43.tar.bz2 cuberite-883230abbcc20a4a27e1d8909894be63dee75d43.tar.lz cuberite-883230abbcc20a4a27e1d8909894be63dee75d43.tar.xz cuberite-883230abbcc20a4a27e1d8909894be63dee75d43.tar.zst cuberite-883230abbcc20a4a27e1d8909894be63dee75d43.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/CompoGenBiomal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generating/CompoGenBiomal.cpp b/src/Generating/CompoGenBiomal.cpp index 995851c95..030c2baa5 100644 --- a/src/Generating/CompoGenBiomal.cpp +++ b/src/Generating/CompoGenBiomal.cpp @@ -39,7 +39,7 @@ public: // Fill the rest with stone: static BlockInfo Stone = {E_BLOCK_STONE, 0}; - for (size_t i = a_Count; i < cChunkDef::Height; i++) + for (int i = static_cast<int>(a_Count); i < cChunkDef::Height; i++) { m_Pattern[i] = Stone; } |