freebsd-ports/games/avanor/files/patch-game__cave.cpp
Danilo Egea Gondolfo e6da6bcb32 - Add stage support
- Fix build with clang
- Convert USE_GMAKE to USES
2013-10-30 03:42:03 +00:00

12 lines
296 B
C++

--- ./game/cave.cpp.orig 2013-10-30 01:23:52.000000000 -0200
+++ ./game/cave.cpp 2013-10-30 01:25:33.000000000 -0200
@@ -192,7 +192,8 @@
}
}
- r.Setup(&XRect(x, y, x + l, y + h));
+ XRect xrecttemp = XRect(x, y, x + l, y + h);
+ r.Setup(&xrecttemp);
}
int XCave::Compare(XObject * o)