create fs_userdir if it's not "." rather than not FS_USERPATH

This commit is contained in:
Bill Currie 2001-07-31 21:52:52 +00:00
parent 828e8b60b6
commit 22339b712d
1 changed files with 1 additions and 1 deletions

View File

@ -996,7 +996,7 @@ COM_Gamedir (const char *dir)
void
COM_CreateGameDirectory (const char *gamename)
{
if (strcmp (fs_userpath->string, FS_USERPATH))
if (strcmp (fs_userpath->string, "."))
COM_CreatePath (va ("%s/%s/dummy", fs_userpath->string, gamename));
COM_AddGameDirectory (gamename);
}