diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-30 15:30:07 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-30 15:30:07 +0000 |
commit | 224a312cb85c18f35f89fd21d7e957f3764fd423 (patch) | |
tree | af7744c4730ab197666bed8aae6a8d896f08025b /code | |
parent | 3a7878700f24a738fc67d0417aa9603a17bb3c66 (diff) | |
download | ioquake3-aero-224a312cb85c18f35f89fd21d7e957f3764fd423.tar.gz ioquake3-aero-224a312cb85c18f35f89fd21d7e957f3764fd423.zip |
really don't add restrictions on demo data
git-svn-id: svn://svn.icculus.org/quake3/trunk@29 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code')
-rw-r--r-- | code/qcommon/files.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/code/qcommon/files.c b/code/qcommon/files.c index 5d6c542..febbf4c 100644 --- a/code/qcommon/files.c +++ b/code/qcommon/files.c @@ -2838,6 +2838,9 @@ if the full version is not found static void FS_SetRestrictions( void ) { searchpath_t *path; + Com_Printf("smells like demo data, continueing anyways\n"); + return; + #ifndef PRE_RELEASE_DEMO char *productId; @@ -3254,10 +3257,8 @@ void FS_InitFilesystem( void ) { // try to start up normally FS_Startup( BASEGAME ); -#if 0 // see if we are going to allow add-ons FS_SetRestrictions(); -#endif // if we can't find default.cfg, assume that the paths are // busted and error out now, rather than getting an unreadable |