From 2b50313c9a29ad0f74db6fd3161ffa719a1f25aa Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 18 Sep 2011 18:07:57 +0000 Subject: [PATCH] Use platform's path separator in FS_Path_f (for consistent output on Windows), reported by Ensiform. --- code/qcommon/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/files.c b/code/qcommon/files.c index b1e44961..1c572314 100644 --- a/code/qcommon/files.c +++ b/code/qcommon/files.c @@ -2709,7 +2709,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 ); } }