mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
from floam: Finishes Ludwig's patch by adding vm_none stub.
This commit is contained in:
parent
f46ede91fb
commit
7c8e2766c6
1 changed files with 10 additions and 0 deletions
10
code/qcommon/vm_none.c
Normal file
10
code/qcommon/vm_none.c
Normal 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);
|
||||
}
|
Loading…
Reference in a new issue