always try native dll first
This commit is contained in:
parent
4fb1caf6bd
commit
2078cfa9a0
2 changed files with 4 additions and 2 deletions
|
@ -484,7 +484,8 @@ vm_t *VM_Create( const char *module, int (*systemCalls)(int *),
|
|||
}
|
||||
}
|
||||
|
||||
if ( interpret == VMI_NATIVE ) {
|
||||
// always try dll first? -- ln
|
||||
if ( 1 || 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 );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue