summaryrefslogtreecommitdiff
path: root/src/qcommon/vm.c
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2011-08-03 14:32:49 +0000
committerTim Angus <tim@ngus.net>2013-01-10 23:26:55 +0000
commit5de808957b859d8bf56a8881d69aef057ccc092b (patch)
tree62ccdc0eeed2ef94a14792b04af95b9dd35a2979 /src/qcommon/vm.c
parent3eae34acfd6561c6dea659f5660c2f3437b28a0b (diff)
* Fix some grammar in DLL loading * s/Sys_LoadQVMDll/Sys_LoadGameDll/
Diffstat (limited to 'src/qcommon/vm.c')
-rw-r--r--src/qcommon/vm.c2
1 files changed, 1 insertions, 1 deletions
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)
{