mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 06:42:26 +00:00
fs_userpath is now . like it SHOULD be. Why? Because despite the unix
way of doing things, every single person who has tried newtree reports it as "broken" because it can't find their pak files. Least surprise.
This commit is contained in:
parent
c8182eb2fd
commit
28d0df55d3
1 changed files with 2 additions and 2 deletions
|
@ -881,9 +881,9 @@ void COM_Gamedir_f (void)
|
|||
void
|
||||
COM_InitFilesystem ( void )
|
||||
{
|
||||
fs_userpath = Cvar_Get ("fs_userpath", FS_USERPATH, CVAR_ROM,
|
||||
fs_userpath = Cvar_Get ("fs_userpath", ".", CVAR_ROM,
|
||||
"the location of your game directories");
|
||||
fs_sharepath = Cvar_Get ("fs_sharepath", FS_SHAREPATH,
|
||||
fs_sharepath = Cvar_Get ("fs_sharepath", fs_userpath->string,
|
||||
CVAR_ROM, "read-only game directories");
|
||||
Cmd_AddCommand ("gamedir", COM_Gamedir_f);
|
||||
|
||||
|
|
Loading…
Reference in a new issue