mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-03-26 04:10:50 +00:00
IOQ3 commit 2192
This commit is contained in:
parent
13a1b7fb06
commit
d41c79ce55
1 changed files with 5 additions and 3 deletions
|
@ -481,18 +481,20 @@ vmHeader_t *VM_LoadQVM( vm_t *vm, qboolean alloc, qboolean unpure)
|
|||
|
||||
if(header.h->vmMagic == VM_MAGIC_VER2)
|
||||
{
|
||||
Com_Printf("Loading %d jump table targets\n", vm->numJumpTableTargets);
|
||||
int previousNumJumpTableTargets = vm->numJumpTableTargets;
|
||||
|
||||
header.h->jtrgLength &= ~0x03;
|
||||
|
||||
vm->numJumpTableTargets = header.h->jtrgLength >> 2;
|
||||
Com_Printf("Loading %d jump table targets\n", vm->numJumpTableTargets);
|
||||
|
||||
if(alloc)
|
||||
{
|
||||
vm->jumpTableTargets = Hunk_Alloc(header.h->jtrgLength, h_high);
|
||||
vm->numJumpTableTargets = header.h->jtrgLength >> 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
if((header.h->jtrgLength >> 2) != vm->numJumpTableTargets)
|
||||
if(vm->numJumpTableTargets != previousNumJumpTableTargets)
|
||||
{
|
||||
VM_Free(vm);
|
||||
FS_FreeFile(header.v);
|
||||
|
|
Loading…
Reference in a new issue