diff options
Diffstat (limited to 'code/server')
-rw-r--r-- | code/server/sv_game.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/code/server/sv_game.c b/code/server/sv_game.c index 6c1faf8..f921226 100644 --- a/code/server/sv_game.c +++ b/code/server/sv_game.c @@ -305,16 +305,7 @@ SV_GameSystemCalls The module is making a system call ==================== */ -//rcg010207 - see my comments in VM_DllSyscall(), in qcommon/vm.c ... -#if ((defined __linux__) && (defined __powerpc__)) -#define VMA(x) ((void *) args[x]) -#else -#define VMA(x) VM_ArgPtr(args[x]) -#endif - -#define VMF(x) ((float *)args)[x] - -int SV_GameSystemCalls( int *args ) { +long SV_GameSystemCalls( long *args ) { switch( args[0] ) { case G_PRINT: Com_Printf( "%s", VMA(1) ); |