diff options
author | Tim Angus <tim@ngus.net> | 2011-08-03 14:32:49 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-10 23:26:55 +0000 |
commit | 5de808957b859d8bf56a8881d69aef057ccc092b (patch) | |
tree | 62ccdc0eeed2ef94a14792b04af95b9dd35a2979 /src/qcommon | |
parent | 3eae34acfd6561c6dea659f5660c2f3437b28a0b (diff) |
* Fix some grammar in DLL loading * s/Sys_LoadQVMDll/Sys_LoadGameDll/
Diffstat (limited to 'src/qcommon')
-rw-r--r-- | src/qcommon/qcommon.h | 2 | ||||
-rw-r--r-- | src/qcommon/vm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/qcommon/qcommon.h b/src/qcommon/qcommon.h index 16b54e33..caabf7f4 100644 --- a/src/qcommon/qcommon.h +++ b/src/qcommon/qcommon.h @@ -1042,7 +1042,7 @@ typedef enum { void Sys_Init (void); // general development dll loading for virtual machine testing -void * QDECL Sys_LoadQVMDll( const char *name, intptr_t (QDECL **entryPoint)(int, ...), +void * QDECL Sys_LoadGameDll( const char *name, intptr_t (QDECL **entryPoint)(int, ...), intptr_t (QDECL *systemcalls)(intptr_t, ...) ); void Sys_UnloadDll( void *dllHandle ); diff --git a/src/qcommon/vm.c b/src/qcommon/vm.c index 536b2ff7..702bdd28 100644 --- a/src/qcommon/vm.c +++ b/src/qcommon/vm.c @@ -580,7 +580,7 @@ vm_t *VM_Create( const char *module, intptr_t (*systemCalls)(intptr_t *), { Com_Printf("Try loading dll file %s\n", filename); - vm->dllHandle = Sys_LoadQVMDll(filename, &vm->entryPoint, VM_DllSyscall); + vm->dllHandle = Sys_LoadGameDll(filename, &vm->entryPoint, VM_DllSyscall); if(vm->dllHandle) { |