mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 06:42:26 +00:00
fix what the previous checkin broke:) thanks for the suggestion, Deek.
This commit is contained in:
parent
92009aae22
commit
b26d6672ae
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue