diff options
author | Will Andrews <will@FreeBSD.org> | 2000-03-21 22:47:00 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-03-21 22:47:00 +0000 |
commit | 359c714dcfee948f05f60bd22ea14e0eaa9182ca (patch) | |
tree | 91d93fe6c193435b22ada600564973d4859200a8 | |
parent | The LSOF author now supports KAME IPv6 on FreeBSD. (diff) |
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>
Notes
Notes:
svn path=/head/; revision=26930
-rw-r--r-- | games/xkobo/Makefile | 2 | ||||
-rw-r--r-- | games/xkobo/files/patch-ag | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/games/xkobo/Makefile b/games/xkobo/Makefile index 6505b7c607cf..2826b4b5a1d1 100644 --- a/games/xkobo/Makefile +++ b/games/xkobo/Makefile @@ -12,7 +12,7 @@ MASTER_SITES= ${MASTER_SITE_XCONTRIB} \ ftp://ftp.uoknor.edu/mirrors/X/contrib/games/ MASTER_SITE_SUBDIR= games -MAINTAINER= andrews@technologist.com +MAINTAINER= will@FreeBSD.org USE_IMAKE= yes ALL_TARGET= xkobo 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++) |