diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-23 10:59:01 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-23 11:54:30 +0100 |
commit | 04fff85c760e36b473556e5e1643f38ea8c6009b (patch) | |
tree | 293370ce881c846e11af52207a24fe9a3d764701 /src/main.cpp | |
parent | 00cbc7490641a697dbedb85b3b2ff3f75893b7ff (diff) | |
download | mana-04fff85c760e36b473556e5e1643f38ea8c6009b.tar.gz mana-04fff85c760e36b473556e5e1643f38ea8c6009b.tar.bz2 mana-04fff85c760e36b473556e5e1643f38ea8c6009b.tar.xz mana-04fff85c760e36b473556e5e1643f38ea8c6009b.zip |
Fixed compile on Windows
Reviewed-by: Bernd Wachter
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 5ed1c4ec..205ba6eb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,6 +31,10 @@ #include <iostream> #include <physfs.h> +#ifdef WIN32 +#include <windows.h> +#endif + static void printHelp() { using std::endl; |