diff options
Diffstat (limited to 'games/battleball/patches/patch-bb_player.C')
-rw-r--r-- | games/battleball/patches/patch-bb_player.C | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/games/battleball/patches/patch-bb_player.C b/games/battleball/patches/patch-bb_player.C new file mode 100644 index 00000000000..25386e1eb82 --- /dev/null +++ b/games/battleball/patches/patch-bb_player.C @@ -0,0 +1,17 @@ +$NetBSD: patch-bb_player.C,v 1.1 2011/11/25 21:50:31 joerg Exp $ + +--- bb/player.C.orig 2011-11-25 15:17:20.000000000 +0000 ++++ bb/player.C +@@ -8,10 +8,11 @@ + #include <limits.h> // to get INT_MAX, LONG_MAX + #include <assert.h> + #include <X11/keysym.h> // to get XK_* +-#include <algo.h> // ugh, this baby's big ++#include <algorithm> // ugh, this baby's big + #include "player.h" + #include "xform.h" + ++using namespace std; + + const coord + COORD_MAX= LONG_MAX, |