summaryrefslogtreecommitdiff
path: root/src/qcommon
diff options
context:
space:
mode:
authorZack Middleton <zturtleman@gmail.com>2011-09-18 18:07:57 +0000
committerTim Angus <tim@ngus.net>2013-01-10 23:37:52 +0000
commitf5cd5b22fd99536bbd0f6d4bbc8de4701ffbb73d (patch)
treebba13351750c52a6310e5c5f982afec66b1bc0aa /src/qcommon
parent4e10909d41781f4e29db5e55d052669678b8b975 (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.c2
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 );
}
}