diff options
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/cl_cgame.c | 2 | ||||
-rw-r--r-- | code/client/cl_ui.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/code/client/cl_cgame.c b/code/client/cl_cgame.c index ed59b88..10deeff 100644 --- a/code/client/cl_cgame.c +++ b/code/client/cl_cgame.c @@ -412,7 +412,7 @@ CL_CgameSystemCalls The cgame module is making a system call ==================== */ -long CL_CgameSystemCalls( long *args ) { +intptr_t CL_CgameSystemCalls( intptr_t *args ) { switch( args[0] ) { case CG_PRINT: Com_Printf( "%s", VMA(1) ); diff --git a/code/client/cl_ui.c b/code/client/cl_ui.c index efbc188..e460b60 100644 --- a/code/client/cl_ui.c +++ b/code/client/cl_ui.c @@ -764,7 +764,7 @@ CL_UISystemCalls The ui module is making a system call ==================== */ -long CL_UISystemCalls( long *args ) { +intptr_t CL_UISystemCalls( intptr_t *args ) { switch( args[0] ) { case UI_ERROR: Com_Error( ERR_DROP, "%s", VMA(1) ); |