From ee7bad769f277420f92b02af4797cd1554e4878d Mon Sep 17 00:00:00 2001 From: glx Date: Sat, 26 Apr 2008 21:34:30 +0000 Subject: [PATCH] (svn r12909) [0.6] -Fix (r12866): missing #defines --- src/stdafx.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/stdafx.h b/src/stdafx.h index 278b7556d2..b237b30f08 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -32,8 +32,10 @@ #include #endif #else - #define INT64_MAX 9223372036854775807LL + #define INT64_MAX (9223372036854775807LL) #define INT64_MIN (-INT64_MAX - 1) + #define INT16_MAX (32767) + #define INT16_MIN (-INT16_MAX - 1) #endif #include