mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Fix for bigfoot with his weird trailing slash in his $HOME.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3115 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
c11da690e1
commit
29e4982454
1 changed files with 5 additions and 2 deletions
|
@ -3277,8 +3277,11 @@ void COM_InitFilesystem (void)
|
|||
#else
|
||||
//yay for unix!.
|
||||
ev = getenv("HOME");
|
||||
if (ev)
|
||||
if (ev && *ev)
|
||||
{
|
||||
if (ev[strlen(ev)-1] == '/')
|
||||
Q_snprintfz(com_homedir, sizeof(com_homedir), "%s.fte/", ev);
|
||||
else
|
||||
Q_snprintfz(com_homedir, sizeof(com_homedir), "%s/.fte/", ev);
|
||||
usehome = true; // always use home on unix unless told not to
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue