freebsd-ports/games/gillo/files/patch-src__simpleball.h
Martin Wilke c1082e0005 - Fix build with clang
PR:		184836
Submitted by:	Ports Fury
2014-01-19 13:47:16 +00:00

13 lines
399 B
C

--- src/simpleball.h.orig
+++ src/simpleball.h
@@ -37,8 +37,8 @@
static const sgVec4 p1[3];
static const sgVec4 ne[3];
static const sgVec4 p2[3];
- static const double weight = ODE_BALL_MASS;
- static const double radius = ODE_BALL_RADIUS;
+ static const double weight;
+ static const double radius;
SimpleBall(Context& c);
SimpleBall(Context& c, float size, ssgSimpleState* state);