CompoGenBiomal: Fixed signed vs unsigned comparison.
This commit is contained in:
parent
e3e13f552f
commit
61ce09e4d0
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user