freebsd-ports/games/quake2-3zb2/files/patch-g_save.c
Alejandro Pulver 48901ec1b7 - Fix undefined references in library (previously it could only be used with
"games/qudos" and "games/kmquake2", because they build a modified version).
- Install node files with appropiate permissions.
- Add an entry in pkg-message about permissions.
- Bump PORTREVISION.

Reported by:	Volodymyr Kostyrko <arcade@synergetica.dn.ua>
Obtained from:	http://svn.quakedev.com/viewcvs.cgi/qudos/trunk/src/mods/3zb2/
2006-12-30 23:21:53 +00:00

22 lines
469 B
C

--- ./g_save.c.orig Sat Dec 30 19:09:03 2006
+++ ./g_save.c Sat Dec 30 19:09:23 2006
@@ -202,7 +202,9 @@
bob_up = gi.cvar ("bob_up", "0.005", 0);
bob_pitch = gi.cvar ("bob_pitch", "0.002", 0);
bob_roll = gi.cvar ("bob_roll", "0.002", 0);
-
+
+ botchat = gi.cvar ("botchat", "1", CVAR_ARCHIVE);
+
// items
InitItems ();
@@ -295,6 +297,8 @@
len = strlen(*(char **)p) + 1;
fwrite (*(char **)p, len, 1, f);
}
+ break;
+ default:
break;
}
}