mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-31 09:01:54 +00:00
* Fixed some long/int warnings, hopefully this doesn't disrupt the MSVC and/or 64bit builds
This commit is contained in:
parent
429e59a53c
commit
cde9e9e93c
4 changed files with 9 additions and 9 deletions
|
@ -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 );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue