Skip to content
Snippets Groups Projects
Commit e5775486 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Hopefully fixed msvc "'sqrt' : ambiguous call to overloaded function"

parent 0c7e7f49
Branches
Tags
No related merge requests found
......@@ -1818,7 +1818,7 @@ void make_block(BlockMakeData *data)
vmanip.m_data[i] = MapNode(CONTENT_GRAVEL);
}
else if(noisebuf_ground_crumbleness.get(x,y,z) <
-3.0 + MYMIN(0.1 * sqrt(MYMAX(0, -y)), 1.5))
-3.0 + MYMIN(0.1 * sqrt((float)MYMAX(0, -y)), 1.5))
{
vmanip.m_data[i] = MapNode(CONTENT_LAVASOURCE);
for(s16 x1=-1; x1<=1; x1++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment