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
commitd3fdba9556dd17ae89b5f7ea8b43172161e5dbb1 (patch)
treee4de5decdbdc939fa529fac2af2375550f2f4009
parenteb1568835815a10e4dde51c3067775feb4ca7930 (diff)
downloadopenttd-d3fdba9556dd17ae89b5f7ea8b43172161e5dbb1.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;