aboutsummaryrefslogtreecommitdiff
path: root/common/file.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-08-01 13:16:23 +0000
committerTravis Howell2003-08-01 13:16:23 +0000
commit04cd9d8375100efb062c925937282818a82fa1d7 (patch)
tree946f7293ae83fc54fddfea52b00bd61d485ad5d0 /common/file.cpp
parent672ebaf867d4d1401d352fd6be249b3d4f935b30 (diff)
downloadscummvm-rg350-04cd9d8375100efb062c925937282818a82fa1d7.tar.gz
scummvm-rg350-04cd9d8375100efb062c925937282818a82fa1d7.tar.bz2
scummvm-rg350-04cd9d8375100efb062c925937282818a82fa1d7.zip
mingw compile broken when include order was changed
svn-id: r9363
Diffstat (limited to 'common/file.cpp')
-rw-r--r--common/file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/file.cpp b/common/file.cpp
index 24861d095d..e99ef2b8cf 100644
--- a/common/file.cpp
+++ b/common/file.cpp
@@ -19,9 +19,9 @@
*
*/
-#include "common/engine.h" // For debug/warning/error
#include "common/file.h"
#include "common/util.h"
+#include "common/engine.h" // For debug/warning/error
FILE *File::fopenNoCase(const char *filename, const char *directory, const char *mode) {
FILE *file;