aboutsummaryrefslogtreecommitdiffstats
path: root/games/xkobo/files
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-03-22 06:47:00 +0800
committerWill Andrews <will@FreeBSD.org>2000-03-22 06:47:00 +0800
commit359c714dcfee948f05f60bd22ea14e0eaa9182ca (patch)
tree91d93fe6c193435b22ada600564973d4859200a8 /games/xkobo/files
parent4406019b6c44dbbc914c361ecd77c484b2a27fa5 (diff)
downloadfreebsd-ports-gnome-359c714dcfee948f05f60bd22ea14e0eaa9182ca.tar.gz
freebsd-ports-gnome-359c714dcfee948f05f60bd22ea14e0eaa9182ca.tar.zst
freebsd-ports-gnome-359c714dcfee948f05f60bd22ea14e0eaa9182ca.zip
Change email address for MAINTAINER to my @FreeBSD.org.
Add patches/patch-ag, which fixes the problem where there was an undefined variable in class _map, which caused very weird things to happen during the game. I'm surprised the compiler didn't catch this. Submitted by: msmith, "S.C.Sprong" <s.c.sprong@student.utwente.nl>
Diffstat (limited to 'games/xkobo/files')
-rw-r--r--games/xkobo/files/patch-ag11
1 files changed, 11 insertions, 0 deletions
diff --git a/games/xkobo/files/patch-ag b/games/xkobo/files/patch-ag
new file mode 100644
index 000000000000..c9b6e3daa8a5
--- /dev/null
+++ b/games/xkobo/files/patch-ag
@@ -0,0 +1,11 @@
+--- map.C Wed Mar 13 11:34:31 1996
++++ map.C.new Mon Mar 20 22:00:29 2000
+@@ -26,6 +26,8 @@
+
+ void _map::init()
+ {
++ sx = 1 << MAP_SIZEX_LOG2;
++ sy = 1 << MAP_SIZEY_LOG2;
+ int i, j;
+ for (i=0; i<sx; i++)
+ for (j=0; j<sy; j++)