mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-30 16:41:31 +00:00
support for 64bit native mods
This commit is contained in:
parent
334fa9c48c
commit
88171d6bb7
14 changed files with 50 additions and 51 deletions
|
@ -757,10 +757,6 @@ static int FloatAsInt( float f ) {
|
|||
return temp;
|
||||
}
|
||||
|
||||
void *VM_ArgPtr( int intValue );
|
||||
#define VMA(x) VM_ArgPtr(args[x])
|
||||
#define VMF(x) ((float *)args)[x]
|
||||
|
||||
/*
|
||||
====================
|
||||
CL_UISystemCalls
|
||||
|
@ -768,7 +764,7 @@ CL_UISystemCalls
|
|||
The ui module is making a system call
|
||||
====================
|
||||
*/
|
||||
int CL_UISystemCalls( int *args ) {
|
||||
long CL_UISystemCalls( long *args ) {
|
||||
switch( args[0] ) {
|
||||
case UI_ERROR:
|
||||
Com_Error( ERR_DROP, "%s", VMA(1) );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue