From 76a733c89276a52553b683ca24509f31af0cd72a Mon Sep 17 00:00:00 2001 From: ludwig Date: Sun, 26 Feb 2006 20:01:45 +0000 Subject: try to fix msvc build git-svn-id: svn://svn.icculus.org/quake3/trunk@588 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/q_shared.h | 4 +++- code/qcommon/vm.c | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'code') diff --git a/code/qcommon/q_shared.h b/code/qcommon/q_shared.h index 2d4b3e1..c2edca1 100644 --- a/code/qcommon/q_shared.h +++ b/code/qcommon/q_shared.h @@ -105,7 +105,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #ifdef Q3_VM typedef int intptr_t; #else -#include +# ifndef _MSC_VER +# include +# endif #endif typedef unsigned char byte; diff --git a/code/qcommon/vm.c b/code/qcommon/vm.c index ed38ad0..9e18f1c 100644 --- a/code/qcommon/vm.c +++ b/code/qcommon/vm.c @@ -886,6 +886,6 @@ void VM_LogSyscalls( int *args ) { f = fopen("syscalls.log", "w" ); } callnum++; - fprintf(f, "%i: %"PRIiPTR" (%i) = %i %i %i %i\n", callnum, (intptr_t)(args - (int *)currentVM->dataBase), + fprintf(f, "%i: %p (%i) = %i %i %i %i\n", callnum, (void*)(args - (int *)currentVM->dataBase), args[0], args[1], args[2], args[3], args[4] ); } -- cgit v1.2.3