mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-23 20:42:30 +00:00
Use platform's path separator in FS_Path_f (for consistent output on Windows), reported by Ensiform.
This commit is contained in:
parent
0866b667e0
commit
2b50313c9a
1 changed files with 1 additions and 1 deletions
|
@ -2709,7 +2709,7 @@ void FS_Path_f( void ) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} 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 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue