freebsd-ports/games/alex4/files/patch-main.h
Matthew Seaman 7a4bf7c495 In the latest installment of the series Alex travels through the jungle
in search of his kidnapped girlfriend. Plenty of classic platforming
in four nice colors guaranteed!

WWW: http://allegator.sourceforge.net/

PR:		208664
Submitted by:	Nikolai Lifanov <lifanov@mail.lifanov.com>
2016-06-18 14:49:52 +00:00

11 lines
343 B
C

--- main.h.orig 2016-06-14 13:49:42.882747000 -0400
+++ main.h
@@ -93,5 +93,8 @@
#define check_bb_collision(x1,y1,w1,h1,x2,y2,w2,h2) (!( ((x1)>=(x2)+(w2)) || ((x2)>=(x1)+(w1)) || \
((y1)>=(y2)+(h2)) || ((y2)>=(y1)+(h1)) ))
+#ifndef DATADIR
+#define DATADIR "data/"
+#endif
#endif