From dedac77b31fc2ddf806e9a70a4a6b536c9a79d35 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Thu, 8 Dec 2005 21:45:34 +0000 Subject: * Merged in a bunch of game side fixed from ioq3 --- src/game/g_syscalls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/g_syscalls.c') diff --git a/src/game/g_syscalls.c b/src/game/g_syscalls.c index 93035395..4f8a8ca7 100644 --- a/src/game/g_syscalls.c +++ b/src/game/g_syscalls.c @@ -19,10 +19,10 @@ // this file is only included when building a dll // g_syscalls.asm is included instead when building a qvm -static int (QDECL *syscall)( int arg, ... ) = (int (QDECL *)( int, ...))-1; +static long (QDECL *syscall)( long arg, ... ) = (long (QDECL *)( long, ...))-1; -void dllEntry( int (QDECL *syscallptr)( int arg,... ) ) +void dllEntry( long (QDECL *syscallptr)( long arg,... ) ) { syscall = syscallptr; } -- cgit