From 85191ef9b1e20ba6c5e0ab9c278d73d407d39e1c Mon Sep 17 00:00:00 2001 From: auria Date: Sun, 8 Dec 2013 02:39:38 +0000 Subject: [PATCH] Fix compilation on VS < 2013, tested and confirmed to work by nixt git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14655 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/utils/types.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/types.hpp b/src/utils/types.hpp index c8db1cd50..b2c044f21 100644 --- a/src/utils/types.hpp +++ b/src/utils/types.hpp @@ -26,6 +26,7 @@ typedef unsigned __int32 uint32_t; typedef __int64 int64_t; typedef unsigned __int64 uint64_t; + typedef char int8_t; #else # include #define SOCKET_ERROR -1