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 | d3fdba9556dd17ae89b5f7ea8b43172161e5dbb1 (patch) | |
tree | e4de5decdbdc939fa529fac2af2375550f2f4009 | |
parent | eb1568835815a10e4dde51c3067775feb4ca7930 (diff) | |
download | openttd-d3fdba9556dd17ae89b5f7ea8b43172161e5dbb1.tar.xz |
(svn r4203) - Fix compilation on mingw32 (stdint.h not included)
-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; |