* Fix some grammar in DLL loading

* s/Sys_LoadQVMDll/Sys_LoadGameDll/
This commit is contained in:
Tim Angus 2011-08-03 14:32:49 +00:00
parent 06628af7c5
commit 85ae08e800
3 changed files with 10 additions and 10 deletions

View file

@ -579,7 +579,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)
{