mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 22:52:04 +00:00
d5fbff3f44
VM_CallInterpreted hurts as VM_CallCompiled is only used on 32bit. Use same arg types for consistency nevertheless.
10 lines
156 B
C
10 lines
156 B
C
#include "vm_local.h"
|
|
|
|
int VM_CallCompiled( vm_t *vm, int *args ) {
|
|
exit(99);
|
|
return 0;
|
|
}
|
|
|
|
void VM_Compile( vm_t *vm, vmHeader_t *header ) {
|
|
exit(99);
|
|
}
|