diff options
author | belugas <belugas@openttd.org> | 2006-04-11 15:18:22 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2006-04-11 15:18:22 +0000 |
commit | fbf6dd2cb938c276332f3221c5b0954b34cc9635 (patch) | |
tree | 0a4aca9e5027fa05d50105f28183c0d0f3c72da0 | |
parent | 595a436683052023d259f84649e08609099f0aa8 (diff) | |
download | openttd-fbf6dd2cb938c276332f3221c5b0954b34cc9635.tar.xz |
(svn r4359) MSV6 Release mode now compiles (problem of UINT_MAX. stdafx.h should be the first include). Thanks to KUDr for solution and testing
-rw-r--r-- | roadveh_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roadveh_cmd.c b/roadveh_cmd.c index 76fa480ca..4c91e4ab9 100644 --- a/roadveh_cmd.c +++ b/roadveh_cmd.c @@ -1,7 +1,7 @@ /* $Id$ */ -#include <limits.h> #include "stdafx.h" +#include <limits.h> #include "openttd.h" #include "debug.h" #include "functions.h" |