diff options
author | Zack Middleton <zturtleman@gmail.com> | 2011-09-18 18:07:57 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-10 23:37:52 +0000 |
commit | f5cd5b22fd99536bbd0f6d4bbc8de4701ffbb73d (patch) | |
tree | bba13351750c52a6310e5c5f982afec66b1bc0aa /src/qcommon | |
parent | 4e10909d41781f4e29db5e55d052669678b8b975 (diff) |
Use platform's path separator in FS_Path_f (for consistent output on Windows), reported by Ensiform.
Diffstat (limited to 'src/qcommon')
-rw-r--r-- | src/qcommon/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/files.c b/src/qcommon/files.c index 16499a0a..0d23cb4c 100644 --- a/src/qcommon/files.c +++ b/src/qcommon/files.c @@ -2671,7 +2671,7 @@ void FS_Path_f( void ) { } } } else { - Com_Printf ("%s/%s\n", s->dir->path, s->dir->gamedir ); + Com_Printf ("%s%c%s\n", s->dir->path, PATH_SEP, s->dir->gamedir ); } } |