mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r12571) -Fix: MorphOS misses INT16_MAX/INT16_MIN.
This commit is contained in:
parent
33a97141d5
commit
1db6c4d55e
@ -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