From 80dd9a1e7955825cb0bb053ec3578579bfe15973 Mon Sep 17 00:00:00 2001 From: Spoike Date: Fri, 14 Feb 2014 10:02:23 +0000 Subject: [PATCH] fix misc junk that was buggy. hurrah for handy test cases. q3 shader remapping now a bit more robust. portals finally work properly. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4611 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/server/svq3_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/server/svq3_game.c b/engine/server/svq3_game.c index 51f8ce0cd..660ba737a 100644 --- a/engine/server/svq3_game.c +++ b/engine/server/svq3_game.c @@ -681,7 +681,7 @@ void SVQ3_SetConfigString(int num, char *string) svq3_configstrings[num] = Z_Malloc(len+1); strcpy(svq3_configstrings[num], string); - SVQ3_SendConfigString(num, string); + SVQ3_SendConfigString(NULL, num, string); } static int FloatAsInt(float f)