diff options
author | orudge <orudge@openttd.org> | 2006-03-31 15:34:22 +0000 |
---|---|---|
committer | orudge <orudge@openttd.org> | 2006-03-31 15:34:22 +0000 |
commit | fa467d2f58e23d3293810bdc7151fa69e9cd00f4 (patch) | |
tree | e4de5decdbdc939fa529fac2af2375550f2f4009 /win32.c | |
parent | cd0a67dc657c8c967745cb3fb91ea9d04a79a826 (diff) | |
download | openttd-fa467d2f58e23d3293810bdc7151fa69e9cd00f4.tar.xz |
(svn r4203) - Fix compilation on mingw32 (stdint.h not included)
Diffstat (limited to 'win32.c')
-rw-r--r-- | win32.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -26,6 +26,9 @@ static bool _has_console; #define __TIMESTAMP__ __DATE__ __TIME__ #endif +#if defined(__MINGW32__) + #include <stdint.h> +#endif static bool cursor_visible = true; |