aboutsummaryrefslogtreecommitdiffstats
path: root/code/cgame/cg_syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/cgame/cg_syscalls.c')
-rw-r--r--code/cgame/cg_syscalls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/cgame/cg_syscalls.c b/code/cgame/cg_syscalls.c
index c7ad938..3c1efa0 100644
--- a/code/cgame/cg_syscalls.c
+++ b/code/cgame/cg_syscalls.c
@@ -28,10 +28,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "cg_local.h"
-static int (QDECL *syscall)( int arg, ... ) = (int (QDECL *)( int, ...))-1;
+static long (QDECL *syscall)( int arg, ... ) = (long (QDECL *)( int, ...))-1;
-void dllEntry( int (QDECL *syscallptr)( int arg,... ) ) {
+void dllEntry( long (QDECL *syscallptr)( int arg,... ) ) {
syscall = syscallptr;
}