diff options
| author | Wen Heping <wen@FreeBSD.org> | 2014-08-10 15:02:19 +0000 |
|---|---|---|
| committer | Wen Heping <wen@FreeBSD.org> | 2014-08-10 15:02:19 +0000 |
| commit | 0dbc01a290e871a86202d2537f15634884bf997a (patch) | |
| tree | f20a54c4bf9bd087f675e1ef6ff3e70578f06ca7 /games/xpacman/files/patch-f | |
| parent | Add CPE data to my ports. (diff) | |
- Update to 1.002
- Stage support
- Fix build with clang
PR: 192546
Submitted by: Vladimir Kondratiev <wulf@cicgroup.ru>
Diffstat (limited to 'games/xpacman/files/patch-f')
| -rw-r--r-- | games/xpacman/files/patch-f | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/xpacman/files/patch-f b/games/xpacman/files/patch-f index 1a207e366f03..c45f8e72ef1d 100644 --- a/games/xpacman/files/patch-f +++ b/games/xpacman/files/patch-f @@ -2,9 +2,10 @@ +++ 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::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; }; |
