Fix win32 compile.

svn-id: r33626
This commit is contained in:
Travis Howell 2008-08-05 00:21:46 +00:00
parent 5dd834488e
commit 7318533189

View File

@ -23,14 +23,18 @@
*
*/
#if defined(WIN32)
#include <windows.h>
#if defined(ARRAYSIZE)
// winnt.h defines ARRAYSIZE, but we want our own one... - this is needed before including util.h
#undef ARRAYSIZE
#endif
#endif
#include "backends/platform/sdl/sdl.h"
#include "common/config-manager.h"
#include "common/events.h"
#include "common/file.h"
#if defined(WIN32) && defined(ARRAYSIZE)
// winnt.h defines ARRAYSIZE, but we want our own one... - this is needed before including util.h
#undef ARRAYSIZE
#endif
#include "common/util.h"
#include "backends/saves/default/default-saves.h"