We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67063ed commit f5211bbCopy full SHA for f5211bb
src/mg_biome.cpp
@@ -72,7 +72,7 @@ BiomeManager::~BiomeManager()
72
void BiomeManager::calcBiomes(s16 sx, s16 sy, float *heat_map,
73
float *humidity_map, s16 *height_map, u8 *biomeid_map)
74
{
75
- for (size_t i = 0; i != sx * sy; i++)
+ for (s32 i = 0; i != sx * sy; i++)
76
biomeid_map[i] = getBiome(heat_map[i], humidity_map[i], height_map[i])->id;
77
}
78
0 commit comments