summaryrefslogtreecommitdiff
path: root/games/xpacman/files/patch-f
diff options
context:
space:
mode:
Diffstat (limited to 'games/xpacman/files/patch-f')
-rw-r--r--games/xpacman/files/patch-f13
1 files changed, 0 insertions, 13 deletions
diff --git a/games/xpacman/files/patch-f b/games/xpacman/files/patch-f
deleted file mode 100644
index c45f8e72ef1d..000000000000
--- a/games/xpacman/files/patch-f
+++ /dev/null
@@ -1,13 +0,0 @@
---- point.cc.orig Sun Jan 9 01:51:12 2000
-+++ point.cc Sun Jan 9 01:51:34 2000
-@@ -1,7 +1,7 @@
- #include"point.h"
--Point::Point(int xx=0,int yy=0) { x=xx; y=yy; };
--Point::val_x() { return x; };
--Point::val_y() { return y; };
-+Point::Point(int xx,int yy) { x=xx; y=yy; };
-+int Point::val_x() { return x; };
-+int Point::val_y() { return y; };
- void Point::set_x(int xx) { x=xx; };
- void Point::set_y(int yy) { y=yy; };
- void Point::set_xy(int xx,int yy) { x=xx; y=yy; };