diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-06-15 22:25:13 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-10 21:28:20 +0000 |
commit | 2dd04e69725fcb96b43aeac13aa03c8a863e9cd3 (patch) | |
tree | b12daba955e46f25c20066aa9da76e3b122cd2c7 /src/qcommon/files.c | |
parent | fad34584b3019a9c46b4b2255e6428ffc3aa04b3 (diff) |
- Don't try to load QVM/DLL files on pure servers - Fallback after failed DLL load will be VMI_COMPILED, not INTERPRETED
Diffstat (limited to 'src/qcommon/files.c')
-rw-r--r-- | src/qcommon/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/files.c b/src/qcommon/files.c index 66cef9a3..e2ca20d0 100644 --- a/src/qcommon/files.c +++ b/src/qcommon/files.c @@ -1370,7 +1370,7 @@ vmInterpret_t FS_FindVM(void **startSearch, char *found, int foundlen, const cha while(search) { - if(search->dir) + if(search->dir && !fs_numServerPaks) { dir = search->dir; |