Changeset - r8823:513731970a50
[Not reviewed]
master
0 1 0
rubidium - 16 years ago 2008-04-04 19:10:45
rubidium@openttd.org
(svn r12571) -Fix: MorphOS misses INT16_MAX/INT16_MIN.
1 file changed with 5 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/stdafx.h
Show inline comments
 
@@ -32,8 +32,12 @@
 
		#include <stdint.h>
 
	#endif
 
#else
 
	#define INT64_MAX 9223372036854775807LL
 
	#define INT64_MAX (9223372036854775807LL)
 
	#define INT64_MIN (-INT64_MAX - 1)
 
	#define INT32_MAX (2147483647)
 
	#define INT32_MIN (-INT32_MAX - 1)
 
	#define INT16_MAX (32767)
 
	#define INT16_MIN (-INT16_MAX - 1)
 
#endif
 

	
 
#include <cstdio>
0 comments (0 inline, 0 general)