pkgsrc/games/xdoom/patches/patch-ak
wiz 5ea5107654 Re-add xdoom, requested by drochner.
Address PR 24024 by marking it as not-for-lp64platforms.
2010-02-22 21:58:47 +00:00

14 lines
396 B
Text

$NetBSD: patch-ak,v 1.3 2010/02/22 21:58:47 wiz Exp $
--- linuxdoom-1.10/info.h.orig Mon Dec 22 20:11:18 1997
+++ linuxdoom-1.10/info.h Thu Feb 3 01:33:51 2000
@@ -1156,7 +1156,8 @@
} state_t;
extern state_t states[NUMSTATES];
-extern char *sprnames[NUMSPRITES];
+/* R_InitSpriteDefs insists on a NULL terminated list, add one for NULL. (jfw) */
+extern char *sprnames[NUMSPRITES+1];