aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/vm.c
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-08-30 21:25:54 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-08-30 21:25:54 +0000
commit9703e96acb91d3ca178d3591ef67f1546a8f19c0 (patch)
tree24b2c7e288ffb86912c0332411e76832c81370aa /code/qcommon/vm.c
parent10c7f18162fafd3833221fbe5a139126d07034ca (diff)
downloadioquake3-aero-9703e96acb91d3ca178d3591ef67f1546a8f19c0.tar.gz
ioquake3-aero-9703e96acb91d3ca178d3591ef67f1546a8f19c0.zip
- load qvm file by default again to avoid 'unpure' error
- fix loading qvms in 64bit q3 git-svn-id: svn://svn.icculus.org/quake3/trunk@36 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon/vm.c')
-rw-r--r--code/qcommon/vm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/code/qcommon/vm.c b/code/qcommon/vm.c
index 2700d59..713e6ae 100644
--- a/code/qcommon/vm.c
+++ b/code/qcommon/vm.c
@@ -484,8 +484,7 @@ vm_t *VM_Create( const char *module, long (*systemCalls)(long *),
}
}
- // always try dll first? -- ln
- if ( 1 || interpret == VMI_NATIVE ) {
+ if ( interpret == VMI_NATIVE ) {
// try to load as a system dll
Com_Printf( "Loading dll file %s.\n", vm->name );
vm->dllHandle = Sys_LoadDll( module, vm->fqpath , &vm->entryPoint, VM_DllSyscall );