1
0
Fork 0

Fixed FinishGen.h types.

This commit is contained in:
madmaxoft 2014-07-30 07:08:29 +02:00
parent 487c572429
commit 7022ae7988
1 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ public:
m_Amount(a_Amount) m_Amount(a_Amount)
{ {
// Initialize all the block types. // Initialize all the block types.
for (unsigned long idx = 0; idx < ARRAYCOUNT(m_IsAllowedBelow); ++idx) for (size_t idx = 0; idx < ARRAYCOUNT(m_IsAllowedBelow); ++idx)
{ {
m_IsAllowedBelow[idx] = false; m_IsAllowedBelow[idx] = false;
} }
@ -175,7 +175,7 @@ public:
} }
// Initialize all the biome types. // Initialize all the biome types.
for (unsigned long idx = 0; idx < ARRAYCOUNT(m_IsBiomeAllowed); ++idx) for (size_t idx = 0; idx < ARRAYCOUNT(m_IsBiomeAllowed); ++idx)
{ {
m_IsBiomeAllowed[idx] = false; m_IsBiomeAllowed[idx] = false;
} }