diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-06-01 04:48:21 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-06-01 04:48:21 +0000 |
commit | 120a860fba4a985fd0d5556f043ee46129524162 (patch) | |
tree | 2afe054353e9f21fc5fbc9d8954d461f210eec39 /games-fps/prboom/files | |
parent | Version bump (diff) | |
download | historical-120a860fba4a985fd0d5556f043ee46129524162.tar.gz historical-120a860fba4a985fd0d5556f043ee46129524162.tar.bz2 historical-120a860fba4a985fd0d5556f043ee46129524162.zip |
Add gcc-3.4 patch #49573 by Felix Riemann.
Diffstat (limited to 'games-fps/prboom/files')
-rw-r--r-- | games-fps/prboom/files/2.2.4-gcc34.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games-fps/prboom/files/2.2.4-gcc34.patch b/games-fps/prboom/files/2.2.4-gcc34.patch new file mode 100644 index 000000000000..c9e5284b6a8f --- /dev/null +++ b/games-fps/prboom/files/2.2.4-gcc34.patch @@ -0,0 +1,11 @@ +--- src/p_maputl.h.old 2004-05-28 15:12:50.480520304 +0200 ++++ src/p_maputl.h 2004-05-28 15:07:49.160327936 +0200 +@@ -82,7 +82,7 @@ + void P_SetThingPosition(mobj_t *thing); + boolean P_BlockLinesIterator (int x, int y, boolean func(line_t *)); + boolean P_BlockThingsIterator(int x, int y, boolean func(mobj_t *)); +-boolean ThingIsOnLine(const mobj_t *t, const line_t *l); /* killough 3/15/98 */ ++boolean CONSTFUNC ThingIsOnLine(const mobj_t *t, const line_t *l); /* killough 3/15/98 */ + boolean P_PathTraverse(fixed_t x1, fixed_t y1, fixed_t x2, fixed_t y2, + int flags, boolean trav(intercept_t *)); + |