summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authororudge <orudge@openttd.org>2006-03-31 15:34:22 +0000
committerorudge <orudge@openttd.org>2006-03-31 15:34:22 +0000
commitfa467d2f58e23d3293810bdc7151fa69e9cd00f4 (patch)
treee4de5decdbdc939fa529fac2af2375550f2f4009
parentcd0a67dc657c8c967745cb3fb91ea9d04a79a826 (diff)
downloadopenttd-fa467d2f58e23d3293810bdc7151fa69e9cd00f4.tar.xz
(svn r4203) - Fix compilation on mingw32 (stdint.h not included)
-rw-r--r--win32.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/win32.c b/win32.c
index 6987ffcf2..0a83c66fe 100644
--- a/win32.c
+++ b/win32.c
@@ -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;