From 06d357fb17226f7421f9e04fd8105aeda36da12b Mon Sep 17 00:00:00 2001 From: Edward Rudd Date: Wed, 3 Dec 2014 12:45:04 -0500 Subject: [PATCH] fix SDL_PRIs64 on windows compilers.. (should end in d) --- include/SDL_stdinc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/SDL_stdinc.h b/include/SDL_stdinc.h index c82fcdd83..3dcd796c3 100644 --- a/include/SDL_stdinc.h +++ b/include/SDL_stdinc.h @@ -1,3 +1,4 @@ +w /* Simple DirectMedia Layer Copyright (C) 1997-2014 Sam Lantinga @@ -172,7 +173,7 @@ typedef uint64_t Uint64; #ifdef PRIs64 #define SDL_PRIs64 PRIs64 #elif defined(__WIN32__) -#define SDL_PRIs64 "I64" +#define SDL_PRIs64 "I64d" #else #define SDL_PRIs64 "lld" #endif