From b5c54ec0190aaf47c6667286d3efeecfdbe13333 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 2 Jun 2017 01:31:45 -0400 Subject: [PATCH] Use stdint.h on Visual C if >= Visual Studio 2010. --- code/autoupdater/autoupdater.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/autoupdater/autoupdater.c b/code/autoupdater/autoupdater.c index ed631e33..3a2d17b0 100644 --- a/code/autoupdater/autoupdater.c +++ b/code/autoupdater/autoupdater.c @@ -8,7 +8,7 @@ is licensed until the GPLv2. Do not mingle code, please! #include #include -#ifdef _MSC_VER +#if defined(_MSC_VER) && (_MSC_VER < 1600) typedef __int64 int64_t; #else #include