mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
Mask the QFS_Rename message with SYS_FS.
It really should have been masked all along, but I guess developer 1 was too noisy back then.
This commit is contained in:
parent
068bc7a627
commit
1406cf13de
1 changed files with 2 additions and 1 deletions
|
@ -1452,7 +1452,8 @@ QFS_Rename (const char *old_path, const char *new_path)
|
|||
if ((ret = qfs_expand_userpath (full_old, old_path)) != -1)
|
||||
if ((ret = qfs_expand_userpath (full_new, new_path)) != -1)
|
||||
if ((ret = Sys_CreatePath (full_new->str)) != -1) {
|
||||
Sys_Printf ("QFS_Rename %s %s\n", full_old->str, full_new->str);
|
||||
Sys_MaskPrintf (SYS_FS, "QFS_Rename %s %s\n", full_old->str,
|
||||
full_new->str);
|
||||
ret = Qrename (full_old->str, full_new->str);
|
||||
}
|
||||
dstring_delete (full_old);
|
||||
|
|
Loading…
Reference in a new issue