mirror of https://github.com/OpenTTD/OpenTTD
(svn r8374) -Fix (r8367): LLONG_MAX isn't always defined, and INT64_MAX describes the
required value better anyway. However, INT64_MAX comes from stdint.h which doesn't seem to exist on MSVC or MorphOS, so it's defined manually for them.release/0.6
parent
cfb7fb3ac4
commit
18fa2ca233
|
@ -39,7 +39,7 @@ enum {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Apparently these don't play well with enums. */
|
/* Apparently these don't play well with enums. */
|
||||||
static const int64 INVALID_DATAPOINT = LLONG_MAX; // Value used for a datapoint that shouldn't be drawn.
|
static const int64 INVALID_DATAPOINT = INT64_MAX; // Value used for a datapoint that shouldn't be drawn.
|
||||||
static const uint INVALID_DATAPOINT_POS = UINT_MAX; // Used to determine if the previous point was drawn.
|
static const uint INVALID_DATAPOINT_POS = UINT_MAX; // Used to determine if the previous point was drawn.
|
||||||
|
|
||||||
typedef struct GraphDrawer {
|
typedef struct GraphDrawer {
|
||||||
|
|
10
src/stdafx.h
10
src/stdafx.h
|
@ -316,4 +316,14 @@ assert_compile(sizeof(uint8) == 1);
|
||||||
# define Point OTTD_AMIGA_POINT
|
# define Point OTTD_AMIGA_POINT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// We need INT64_MAX, which for most systems comes from stdint.h. However, MSVC
|
||||||
|
// does not have stdint.h and apparently neither does MorphOS, so define
|
||||||
|
// INT64_MAX for them ourselves.
|
||||||
|
#if !defined(_MSC_VER) && !defined( __MORPHOS__)
|
||||||
|
# define __STDC_LIMIT_MACROS
|
||||||
|
# include <stdint.h>
|
||||||
|
#else
|
||||||
|
# define INT64_MAX 9223372036854775807LL
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* STDAFX_H */
|
#endif /* STDAFX_H */
|
||||||
|
|
Loading…
Reference in New Issue