make fs_skinbase default to fs_basegame when using newstyle

This commit is contained in:
Bill Currie 2001-01-20 04:56:02 +00:00
parent 90f206ba5d
commit 1e270eb552

View file

@ -1084,8 +1084,13 @@ COM_Filesystem_Init_Cvars (void)
"location of your game directories");
fs_basegame = Cvar_Get ("fs_basegame", BASEGAME, CVAR_ROM,
"game to use by default");
#ifdef NEWSTYLE
fs_skinbase= Cvar_Get ("fs_skinbase", fs_basegame->string, CVAR_ROM,
"location of skins dir for downloads");
#else
fs_skinbase= Cvar_Get ("fs_skinbase", SKINBASE, CVAR_ROM,
"location of skins dir for downloads");
#endif
}
/*