diff options
author | rubidium <rubidium@openttd.org> | 2015-08-13 18:13:24 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2015-08-13 18:13:24 +0000 |
commit | 8b1f9399bcbd96ecb64d2bcd69a1c0223d1a6659 (patch) | |
tree | 99c54d0d5788d521b929035a4f6a537cfac4cb7c /src/os/windows | |
parent | f0837baf449f32f70e603e00b00275c0792a308d (diff) | |
download | openttd-8b1f9399bcbd96ecb64d2bcd69a1c0223d1a6659.tar.xz |
(svn r27385) -Fix: compilation failure due #define-ing enum name of a system library before including the system library
Diffstat (limited to 'src/os/windows')
-rw-r--r-- | src/os/windows/win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/windows/win32.cpp b/src/os/windows/win32.cpp index f69f01f6c..2682fa143 100644 --- a/src/os/windows/win32.cpp +++ b/src/os/windows/win32.cpp @@ -14,13 +14,13 @@ #include "../../gfx_func.h" #include "../../textbuf_gui.h" #include "../../fileio_func.h" -#include "../../fios.h" #include <windows.h> #include <fcntl.h> #include <regstr.h> #include <shlobj.h> /* SHGetFolderPath */ #include <shellapi.h> #include "win32.h" +#include "../../fios.h" #include "../../core/alloc_func.hpp" #include "../../openttd.h" #include "../../core/random_func.hpp" |