Skip to content

Commit f5211bb

Browse files
committedDec 18, 2014
Suppress compiler warning
1 parent 67063ed commit f5211bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/mg_biome.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ BiomeManager::~BiomeManager()
7272
void BiomeManager::calcBiomes(s16 sx, s16 sy, float *heat_map,
7373
float *humidity_map, s16 *height_map, u8 *biomeid_map)
7474
{
75-
for (size_t i = 0; i != sx * sy; i++)
75+
for (s32 i = 0; i != sx * sy; i++)
7676
biomeid_map[i] = getBiome(heat_map[i], humidity_map[i], height_map[i])->id;
7777
}
7878

0 commit comments

Comments
 (0)
Please sign in to comment.