diff options
author | Max Horn | 2011-02-05 10:34:37 +0000 |
---|---|---|
committer | Max Horn | 2011-02-05 10:34:37 +0000 |
commit | 47dbd520bb6bfe92fb05566b08a77a3e77eb7554 (patch) | |
tree | b18a952857a120be38fb007ad62befa4f50ae6fd | |
parent | c1a9857837d7527cb8b7e9149a186cfd50ffff0b (diff) | |
download | scummvm-rg350-47dbd520bb6bfe92fb05566b08a77a3e77eb7554.tar.gz scummvm-rg350-47dbd520bb6bfe92fb05566b08a77a3e77eb7554.tar.bz2 scummvm-rg350-47dbd520bb6bfe92fb05566b08a77a3e77eb7554.zip |
WIN32: Try to fix compiler error for mingw-w64 buildbot build
svn-id: r55785
-rw-r--r-- | backends/platform/sdl/win32/win32-main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/platform/sdl/win32/win32-main.cpp b/backends/platform/sdl/win32/win32-main.cpp index f2b570043f..50743e65a5 100644 --- a/backends/platform/sdl/win32/win32-main.cpp +++ b/backends/platform/sdl/win32/win32-main.cpp @@ -23,6 +23,9 @@ * */ +// Disable symbol overrides so that we can use system headers. +#define FORBIDDEN_SYMBOL_ALLOW_ALL + #include "common/scummsys.h" #ifdef WIN32 |