diff options
Diffstat (limited to 'src/qcommon/vm.c')
-rw-r--r-- | src/qcommon/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/vm.c b/src/qcommon/vm.c index 37db8b02..5476a085 100644 --- a/src/qcommon/vm.c +++ b/src/qcommon/vm.c @@ -576,7 +576,7 @@ vm_t *VM_Create( const char *module, intptr_t (*systemCalls)(intptr_t *), // allocate space for the jump targets, which will be filled in by the compile/prep functions vm->instructionCount = header->instructionCount; - vm->instructionPointers = Hunk_Alloc( vm->instructionCount*4, h_high ); + vm->instructionPointers = Hunk_Alloc(vm->instructionCount * sizeof(*vm->instructionPointers), h_high); // copy or compile the instructions vm->codeLength = header->codeLength; |