Move the qfs_* cvars out of quakefs.h

The qfs cvars are all private.
This commit is contained in:
Bill Currie 2010-08-24 16:48:49 +09:00
parent 0cc4bc8c69
commit 031055a91f
2 changed files with 3 additions and 6 deletions

View file

@ -68,9 +68,6 @@ typedef void gamedir_callback_t (int phase);
extern gamedir_t *qfs_gamedir;
extern struct cvar_s *fs_sharepath;
extern struct cvar_s *fs_userpath;
extern const char *qfs_userpath;
extern int file_from_pak;

View file

@ -125,9 +125,9 @@ int fnmatch (const char *__pattern, const char *__string, int __flags);
// QUAKE FILESYSTEM
cvar_t *fs_userpath;
cvar_t *fs_sharepath;
cvar_t *fs_dirconf;
static cvar_t *fs_userpath;
static cvar_t *fs_sharepath;
static cvar_t *fs_dirconf;
VISIBLE const char *qfs_userpath;