Core/Misc: Fix some -Wconversion warnings

This commit is contained in:
jackpoz
2014-08-21 16:56:11 +02:00
parent f5f9df0483
commit 7fe7f30521
85 changed files with 207 additions and 206 deletions

View File

@@ -256,5 +256,5 @@ float DynamicMapTree::getHeight(float x, float y, float z, float maxSearchDist,
if (callback.didHit())
return v.z - maxSearchDist;
else
return -G3D::inf();
return -G3D::finf();
}