1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00
Kurt Jaeger 465672b365 games/kuklomenos: Fix build with libc++ 3.8.0
PR:		208842
Submitted by:	dim
2016-04-18 16:52:26 +00:00

12 lines
358 B
C++

--- node.cc.orig 2009-10-04 14:01:21 UTC
+++ node.cc
@@ -175,7 +175,7 @@ Uint32 Node::colour() const
{
intensity = (status == NODEST_NONE ? 0x80 : 0xbf);
intensity += int( (0xff - intensity) *
- std::max(0.0, 1 - ( fabs(angleDiff(spin*3, 0)) * 2 )) );
+ std::max(0.0f, 1 - ( fabsf(angleDiff(spin*3, 0)) * 2 )) );
}
}
else