aboutsummaryrefslogtreecommitdiffstats
path: root/games/wop
diff options
context:
space:
mode:
authoramdmi3 <amdmi3@FreeBSD.org>2012-08-15 11:39:55 +0800
committeramdmi3 <amdmi3@FreeBSD.org>2012-08-15 11:39:55 +0800
commit1a97269dd5654250b8505ae606d72cc71cd4f3d4 (patch)
tree4a8e009144f97b0bb32a8acd711e097d72807903 /games/wop
parent4151d9e72d40d33503a320446fe58dda6368b58b (diff)
downloadfreebsd-ports-gnome-1a97269dd5654250b8505ae606d72cc71cd4f3d4.tar.gz
freebsd-ports-gnome-1a97269dd5654250b8505ae606d72cc71cd4f3d4.tar.zst
freebsd-ports-gnome-1a97269dd5654250b8505ae606d72cc71cd4f3d4.zip
- Remove unneeded patch
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; }