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:
Joseph Carter 2000-05-24 05:47:58 +00:00
parent c8182eb2fd
commit 28d0df55d3

View file

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