e6da6bcb32
- Fix build with clang - Convert USE_GMAKE to USES
12 lines
296 B
C++
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)
|