mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 19:50:31 -04:00
"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/
13 lines
557 B
C
13 lines
557 B
C
--- ./g_svcmds.c.orig Sat Dec 30 19:09:03 2006
|
||
+++ ./g_svcmds.c Sat Dec 30 19:09:23 2006
|
||
@@ -310,8 +310,8 @@
|
||
}
|
||
|
||
//‚Æ‚è‚ ‚¦‚¸CTF‚¾‚ß
|
||
- if(ctf->value) sprintf(name,".\\%s\\chctf\\%s.chf",gamepath->string,level.mapname);
|
||
- else sprintf(name,".\\%s\\chdtm\\%s.chn",gamepath->string,level.mapname);
|
||
+ if(ctf->value) sprintf(name,"%s/chctf/%s.chf",gamepath->string,level.mapname);
|
||
+ else sprintf(name,"%s/chdtm/%s.chn",gamepath->string,level.mapname);
|
||
|
||
fpout = fopen(name,"wb");
|
||
if(fpout == NULL) gi.cprintf(NULL,PRINT_HIGH,"Can't open %s\n",name);
|