Use platform's path separator in FS_Path_f (for consistent output on Windows), reported by Ensiform.

This commit is contained in:
Zack Middleton 2011-09-18 18:07:57 +00:00
parent 0866b667e0
commit 2b50313c9a

View file

@ -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 );
}
}