summaryrefslogtreecommitdiff
path: root/games/xdoom/patches/patch-af
diff options
context:
space:
mode:
authorwiz <wiz>2002-08-20 13:10:30 +0000
committerwiz <wiz>2002-08-20 13:10:30 +0000
commit954940854e2c515f27244d6812622b9c05579ad7 (patch)
treebc5bc79f918b9db5333ada15d94937cc9c912695 /games/xdoom/patches/patch-af
parent99342133b364a2dd7118561d97ce86178959f053 (diff)
downloadpkgsrc-954940854e2c515f27244d6812622b9c05579ad7.tar.gz
Pull up
1.18 and 1.19 Makefile 1.5 distinfo 1.5 patches/patch-af to the 1.6 branch, as requested by agc. distinfo+patch-af: Fix the WAD version number printf(), which is very obviously broken. Makefile: Fix the special-case do-build target to respect MAKE_ENV. Crank PKGREVISION.
Diffstat (limited to 'games/xdoom/patches/patch-af')
-rw-r--r--games/xdoom/patches/patch-af4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/xdoom/patches/patch-af b/games/xdoom/patches/patch-af
index 9c6ffd33019..8cf14aa283c 100644
--- a/games/xdoom/patches/patch-af
+++ b/games/xdoom/patches/patch-af
@@ -1,4 +1,4 @@
-$NetBSD: patch-af,v 1.4 2000/02/03 16:01:15 abs Exp $
+$NetBSD: patch-af,v 1.4.8.1 2002/08/20 13:10:31 wiz Exp $
--- linuxdoom-1.10/g_game.c.orig Mon Dec 22 20:35:29 1997
+++ linuxdoom-1.10/g_game.c Thu Feb 3 01:33:47 2000
@@ -11,7 +11,7 @@ $NetBSD: patch-af,v 1.4 2000/02/03 16:01:15 abs Exp $
{
- fprintf( stderr, "Demo is from a different game version!\n");
+ fprintf( stderr, "Demo is from a different game version (%.2f / %.2f)!\n",
-+ demo_p[-1]/(float)100, VERSION/(float)100);
++ *demo_p/100.0, VERSION/100.0);
gameaction = ga_nothing;
return;
}