aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/vm_local.h
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-09-26 16:13:14 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-09-26 16:13:14 +0000
commit6addebda62ab0c65c7f587b2fef7fb22c3340d41 (patch)
tree6dbb771347101a91e208bdb02495871c2ab8f163 /code/qcommon/vm_local.h
parent9856ae6b514b8018c507586eb44900c52b5dcee2 (diff)
downloadioquake3-aero-6addebda62ab0c65c7f587b2fef7fb22c3340d41.tar.gz
ioquake3-aero-6addebda62ab0c65c7f587b2fef7fb22c3340d41.zip
* Fixed some long/int warnings, hopefully this doesn't disrupt the MSVC and/or 64bit builds
git-svn-id: svn://svn.icculus.org/quake3/trunk@112 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon/vm_local.h')
-rw-r--r--code/qcommon/vm_local.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/qcommon/vm_local.h b/code/qcommon/vm_local.h
index f6fc043..7df5ec1 100644
--- a/code/qcommon/vm_local.h
+++ b/code/qcommon/vm_local.h
@@ -168,10 +168,10 @@ extern vm_t *currentVM;
extern int vm_debugLevel;
void VM_Compile( vm_t *vm, vmHeader_t *header );
-int VM_CallCompiled( vm_t *vm, int *args );
+int VM_CallCompiled( vm_t *vm, long *args );
void VM_PrepareInterpreter( vm_t *vm, vmHeader_t *header );
-int VM_CallInterpreted( vm_t *vm, int *args );
+int VM_CallInterpreted( vm_t *vm, long *args );
vmSymbol_t *VM_ValueToFunctionSymbol( vm_t *vm, int value );
int VM_SymbolToValue( vm_t *vm, const char *symbol );