mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
create the demo path `properly'
This commit is contained in:
parent
1342533234
commit
0ec386dc76
1 changed files with 2 additions and 2 deletions
|
@ -1106,7 +1106,7 @@ SV_Record_f (void)
|
|||
sv_demoPrefix->string, SV_CleanName (Cmd_Argv (1)),
|
||||
sv_demoSuffix->string);
|
||||
|
||||
Sys_mkdir (va ("%s/%s", com_gamedir, sv_demoDir->string));
|
||||
COM_CreatePath (name->str);
|
||||
|
||||
// open the demo file
|
||||
name->size += 4;
|
||||
|
@ -1226,7 +1226,7 @@ SV_EasyRecord_f (void)
|
|||
dsprintf (name2, "%s/%s/%s%s%s", com_gamedir, sv_demoDir->string,
|
||||
sv_demoPrefix->string, SV_CleanName (name->str),
|
||||
sv_demoSuffix->string);
|
||||
Sys_mkdir (va ("%s/%s", com_gamedir, sv_demoDir->string));
|
||||
COM_CreatePath (name2->str);
|
||||
|
||||
// find a filename that doesn't exist yet
|
||||
dsprintf (name, "%s", name2->str);
|
||||
|
|
Loading…
Reference in a new issue