aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/vm_x86.c
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-10-29 00:23:10 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-10-29 00:23:10 +0000
commitcb4c62edf0edd59de1e98755557c46a61ecb6224 (patch)
tree3605464930997258071b15b53b2da8c38ba82e45 /code/qcommon/vm_x86.c
parent16e8eab042e8cecb439050923c2a56269fe856eb (diff)
downloadioquake3-aero-cb4c62edf0edd59de1e98755557c46a61ecb6224.tar.gz
ioquake3-aero-cb4c62edf0edd59de1e98755557c46a61ecb6224.zip
* Deleted code/unix/vm_x86.c - wtf was that about anyway?
* Removed HAVE_VM_NATIVE * Removed DLL_ONLY * Replace HAVE_VM_COMPILED with NO_VM_COMPILED -- this means the JIT compiler should be enabled on the OS X and VC builds now * Remove the remainder of the freetype building stuff git-svn-id: svn://svn.icculus.org/quake3/trunk@194 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon/vm_x86.c')
-rw-r--r--code/qcommon/vm_x86.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/code/qcommon/vm_x86.c b/code/qcommon/vm_x86.c
index 63b3e1b..91bb923 100644
--- a/code/qcommon/vm_x86.c
+++ b/code/qcommon/vm_x86.c
@@ -1106,7 +1106,6 @@ VM_CallCompiled
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, int *args ) {
int stack[1024];
int programCounter;
@@ -1206,6 +1205,3 @@ int VM_CallCompiled( vm_t *vm, int *args ) {
return *(int *)opStack;
}
-#endif // !DLL_ONLY
-
-