From f5cd5b22fd99536bbd0f6d4bbc8de4701ffbb73d Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 18 Sep 2011 18:07:57 +0000 Subject: Use platform's path separator in FS_Path_f (for consistent output on Windows), reported by Ensiform. --- src/qcommon/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qcommon') 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 ); } } -- cgit