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:
Ludwig Nussel 2005-09-26 22:23:46 +00:00
parent 534da92fc0
commit d5fbff3f44
6 changed files with 10 additions and 9 deletions

View file

@ -310,7 +310,7 @@ locals from sp
#define DEBUGSTR va("%s%i", VM_Indent(vm), opStack-stack )
int VM_CallInterpreted( vm_t *vm, long *args ) {
int VM_CallInterpreted( vm_t *vm, int *args ) {
int stack[MAX_STACK];
int *opStack;
int programCounter;