aboutsummaryrefslogtreecommitdiff
path: root/games/wop
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2012-08-15 03:39:55 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2012-08-15 03:39:55 +0000
commitad0dc6c8e57cd437e6b3108a3a1d87e005c903c1 (patch)
tree4a8e009144f97b0bb32a8acd711e097d72807903 /games/wop
parent6e4e3f0476f1ef30b5e7d32c36b2e8c38d26302a (diff)
downloadports-ad0dc6c8e57cd437e6b3108a3a1d87e005c903c1.tar.gz
ports-ad0dc6c8e57cd437e6b3108a3a1d87e005c903c1.zip
- Remove unneeded patch
Notes
Notes: svn path=/head/; revision=302562
Diffstat (limited to 'games/wop')
-rw-r--r--games/wop/files/extra-patch-src-global.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/games/wop/files/extra-patch-src-global.hpp b/games/wop/files/extra-patch-src-global.hpp
deleted file mode 100644
index 41e8d81f1441..000000000000
--- a/games/wop/files/extra-patch-src-global.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/global.hpp.orig Tue Jun 28 17:55:19 2005
-+++ src/global.hpp Fri Feb 10 00:42:31 2006
-@@ -44,7 +44,7 @@
-
- void makePace();
-
--inline int ROUND( const real x ) { return static_cast<int>( round( x )); }
-+#define ROUND(x) (int)((x)-floor(x) < 0.5 ? floor(x) : ceil(x))
-
- // already defined somewhere else
- //template<class T> T min( const T a, const T b ) { return a < b ? a : b; }