fix what the previous checkin broke:) thanks for the suggestion, Deek.

This commit is contained in:
Bill Currie 2000-05-23 21:37:55 +00:00
parent 92009aae22
commit b26d6672ae
1 changed files with 4 additions and 4 deletions

View File

@ -890,18 +890,18 @@ COM_InitFilesystem ( void )
/*
start up with BASEGAME by default
*/
COM_CreatePath (va("%s/%s",fs_userpath->string,BASEGAME));
COM_CreatePath (va("%s/%s/dummy",fs_userpath->string,BASEGAME));
COM_AddGameDirectory (BASEGAME);
if (hipnotic) {
COM_CreatePath (va("%s/%s",fs_userpath->string,"hipnotic"));
COM_CreatePath (va("%s/%s/dummy",fs_userpath->string,"hipnotic"));
COM_AddGameDirectory ("hipnotic");
}
if (rogue) {
COM_CreatePath (va("%s/%s",fs_userpath->string,"rogue"));
COM_CreatePath (va("%s/%s/dummy",fs_userpath->string,"rogue"));
COM_AddGameDirectory ("rogue");
}
COM_CreatePath (va("%s/qw",fs_userpath->string));
COM_CreatePath (va("%s/qw/dummy",fs_userpath->string));
COM_AddGameDirectory ("qw");
// any set gamedirs will be freed up to here