revert int->long change as it breaks on 64bit. Actually only
VM_CallInterpreted hurts as VM_CallCompiled is only used on 32bit. Use same arg types for consistency nevertheless.
This commit is contained in:
parent
534da92fc0
commit
d5fbff3f44
6 changed files with 10 additions and 9 deletions
|
@ -1101,7 +1101,7 @@ This function is called directly by the generated code
|
|||
==============
|
||||
*/
|
||||
#ifndef DLL_ONLY // bk010215 - for DLL_ONLY dedicated servers/builds w/o VM
|
||||
int VM_CallCompiled( vm_t *vm, long *args ) {
|
||||
int VM_CallCompiled( vm_t *vm, int *args ) {
|
||||
int stack[1024];
|
||||
int programCounter;
|
||||
int programStack;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue