diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-09-15 18:09:56 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-09-15 18:09:56 +0000 |
commit | bc38392eb1e7b219e3b3814934c530a028587dbd (patch) | |
tree | 481cddd35aea6875d7d55cdccfadc2c3696f9b51 /source/net_common.c | |
parent | f1d3f84f3be83dc13b3a066b34d99b15716a1b6c (diff) |
Allow quake paths up to MAX_OSPATH characters at VFS level.
Modified demo recording and playback functions to support longer pathnames.
Diffstat (limited to 'source/net_common.c')
-rw-r--r-- | source/net_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/net_common.c b/source/net_common.c index 886bf90..3ee5494 100644 --- a/source/net_common.c +++ b/source/net_common.c @@ -220,7 +220,7 @@ static void NetLogFile_Close( void ) { return; } - Com_Printf( "Closing %s\n", FS_GetFileName( net_logFile ) ); + Com_Printf( "Closing network log.\n" ); FS_FCloseFile( net_logFile ); net_logFile = 0; |