From 2b16a3c9f06f8a3d4d00c1c3631ba23f331fddac Mon Sep 17 00:00:00 2001 From: tma Date: Fri, 14 Oct 2005 17:09:03 +0000 Subject: * Adjusted VM_LoadQVM interface git-svn-id: svn://svn.icculus.org/quake3/trunk@158 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/vm.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'code/qcommon') diff --git a/code/qcommon/vm.c b/code/qcommon/vm.c index a319c12..fc795cd 100644 --- a/code/qcommon/vm.c +++ b/code/qcommon/vm.c @@ -356,11 +356,12 @@ VM_LoadQVM Load a .qvm file ================= */ -vmHeader_t *VM_LoadQVM( vm_t *vm, vmHeader_t *header, qboolean alloc ) { - int length; - int dataLength; - int i; - char filename[MAX_QPATH]; +vmHeader_t *VM_LoadQVM( vm_t *vm, qboolean alloc ) { + int length; + int dataLength; + int i; + char filename[MAX_QPATH]; + vmHeader_t *header; // load the image Com_sprintf( filename, sizeof(filename), "vm/%s.qvm", vm->name ); @@ -475,7 +476,7 @@ vm_t *VM_Restart( vm_t *vm ) { // load the image Com_Printf( "VM_Restart()\n" ); - if( !( header = VM_LoadQVM( vm, header, qfalse ) ) ) { + if( !( header = VM_LoadQVM( vm, qfalse ) ) ) { Com_Error( ERR_DROP, "VM_Restart failed.\n" ); return NULL; } @@ -560,7 +561,7 @@ vm_t *VM_Create( const char *module, long (*systemCalls)(long *), #endif // load the image - if( !( header = VM_LoadQVM( vm, header, qtrue ) ) ) { + if( !( header = VM_LoadQVM( vm, qtrue ) ) ) { return NULL; } -- cgit v1.2.3