diff options
author | Max Horn | 2010-11-29 16:18:43 +0000 |
---|---|---|
committer | Max Horn | 2010-11-29 16:18:43 +0000 |
commit | df05ed1a46516f7e4d5c6e78f7f096208dbad790 (patch) | |
tree | e7b9077c9a92d5ff54e22705cdd6c9ff50faa38a /backends/platform/sdl/posix | |
parent | 4e0e406181a36e5f5ff59e6b917f81f317e1de1a (diff) | |
download | scummvm-rg350-df05ed1a46516f7e4d5c6e78f7f096208dbad790.tar.gz scummvm-rg350-df05ed1a46516f7e4d5c6e78f7f096208dbad790.tar.bz2 scummvm-rg350-df05ed1a46516f7e4d5c6e78f7f096208dbad790.zip |
BACKENDS: Include scummsys.h at top of all .cpp files, *before* any #ifdefs
svn-id: r54573
Diffstat (limited to 'backends/platform/sdl/posix')
-rw-r--r-- | backends/platform/sdl/posix/posix-main.cpp | 2 | ||||
-rw-r--r-- | backends/platform/sdl/posix/posix.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/backends/platform/sdl/posix/posix-main.cpp b/backends/platform/sdl/posix/posix-main.cpp index de9eb2b7ef..10ed43f43f 100644 --- a/backends/platform/sdl/posix/posix-main.cpp +++ b/backends/platform/sdl/posix/posix-main.cpp @@ -23,6 +23,8 @@ * */ +#include "common/scummsys.h" + #if defined(UNIX) && !defined(MACOSX) && !defined(SAMSUNGTV) && !defined(LINUXMOTO) && !defined(GP2XWIZ) && !defined(GP2X) && !defined(DINGUX) #include "backends/platform/sdl/posix/posix.h" diff --git a/backends/platform/sdl/posix/posix.cpp b/backends/platform/sdl/posix/posix.cpp index c9c7304c0f..6f91188184 100644 --- a/backends/platform/sdl/posix/posix.cpp +++ b/backends/platform/sdl/posix/posix.cpp @@ -23,6 +23,8 @@ * */ +#include "common/scummsys.h" + #ifdef UNIX #include "backends/platform/sdl/posix/posix.h" |