from floam: Finishes Ludwig's patch by adding vm_none stub.

This commit is contained in:
Zachary Slater 2005-08-27 05:06:47 +00:00
parent f46ede91fb
commit 7c8e2766c6

10
code/qcommon/vm_none.c Normal file
View file

@ -0,0 +1,10 @@
#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);
}