From bf468a39e191c0b6bdd4528bfe4ab870a725d319 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Tue, 5 Feb 2013 02:35:09 +0000 Subject: [PATCH] -bugfix for vc++ 2010 (last commit was done from vc++ 2012) --- source/shared_lib/include/platform/sdl/data_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shared_lib/include/platform/sdl/data_types.h b/source/shared_lib/include/platform/sdl/data_types.h index 052d5637c..21652d787 100644 --- a/source/shared_lib/include/platform/sdl/data_types.h +++ b/source/shared_lib/include/platform/sdl/data_types.h @@ -212,7 +212,7 @@ typedef uint32_t uint_least32_t; typedef uint64_t uint_least64_t; // 7.18.1.3 Fastest minimum-width integer types -#if (_MSC_VER < 1700) +#if (_MSC_VER < 1300) typedef int8_t int_fast8_t; typedef int16_t int_fast16_t;