mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-07 06:46:43 +00:00
(svn r12571) -Fix: MorphOS misses INT16_MAX/INT16_MIN.
This commit is contained in:
parent
d1c0e57901
commit
c5814a72ce
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user