mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
replace a missing / when producing files.dat
This commit is contained in:
parent
c500fd7479
commit
351e70b3bd
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ WriteFiles (void)
|
|||
int i;
|
||||
char filename[1024];
|
||||
|
||||
sprintf (filename, "%sfiles.dat", sourcedir);
|
||||
sprintf (filename, "%s/files.dat", sourcedir);
|
||||
f = fopen (filename, "w");
|
||||
if (!f)
|
||||
Error ("Couldn't open %s", filename);
|
||||
|
|
Loading…
Reference in a new issue