mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 04:30:43 +00:00
create fs_userdir if it's not "." rather than not FS_USERPATH
This commit is contained in:
parent
828e8b60b6
commit
22339b712d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue