mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
really don't add restrictions on demo data
This commit is contained in:
parent
9a455ba5ec
commit
fc29447726
1 changed files with 3 additions and 2 deletions
|
@ -2838,6 +2838,9 @@ if the full version is not found
|
||||||
static void FS_SetRestrictions( void ) {
|
static void FS_SetRestrictions( void ) {
|
||||||
searchpath_t *path;
|
searchpath_t *path;
|
||||||
|
|
||||||
|
Com_Printf("smells like demo data, continueing anyways\n");
|
||||||
|
return;
|
||||||
|
|
||||||
#ifndef PRE_RELEASE_DEMO
|
#ifndef PRE_RELEASE_DEMO
|
||||||
char *productId;
|
char *productId;
|
||||||
|
|
||||||
|
@ -3254,10 +3257,8 @@ void FS_InitFilesystem( void ) {
|
||||||
// try to start up normally
|
// try to start up normally
|
||||||
FS_Startup( BASEGAME );
|
FS_Startup( BASEGAME );
|
||||||
|
|
||||||
#if 0
|
|
||||||
// see if we are going to allow add-ons
|
// see if we are going to allow add-ons
|
||||||
FS_SetRestrictions();
|
FS_SetRestrictions();
|
||||||
#endif
|
|
||||||
|
|
||||||
// if we can't find default.cfg, assume that the paths are
|
// if we can't find default.cfg, assume that the paths are
|
||||||
// busted and error out now, rather than getting an unreadable
|
// busted and error out now, rather than getting an unreadable
|
||||||
|
|
Loading…
Reference in a new issue