From: sfan5 Date: Wed, 10 Jun 2020 09:46:14 +0000 (+0200) Subject: Fix build error on Ubuntu 16.04 (again) X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=80d9e9c1834fdc78588ffe2842766c0177227786;p=oweals%2Fminetest.git Fix build error on Ubuntu 16.04 (again) --- diff --git a/src/client/mesh.cpp b/src/client/mesh.cpp index 91781373c..68832849e 100644 --- a/src/client/mesh.cpp +++ b/src/client/mesh.cpp @@ -341,7 +341,7 @@ bool checkMeshNormals(scene::IMesh *mesh) // hurting the performance and covering only really weird broken models. f32 length = buffer->getNormal(0).getLength(); - if (!isfinite(length) || fabs(length) < 1e-10) + if (!std::isfinite(length) || std::fabs(length) < 1e-10f) return false; }