diff options
author | Max Horn | 2011-06-03 18:30:01 +0200 |
---|---|---|
committer | Max Horn | 2011-06-03 18:31:29 +0200 |
commit | 6287426db0933bc8569407cde7b01c4883a80fca (patch) | |
tree | 077bbee62bc076df60293440aafc9cba5a28631f /backends/platform/sdl | |
parent | 59646053a3ce27656afbd321565ca63ffddc7811 (diff) | |
download | scummvm-rg350-6287426db0933bc8569407cde7b01c4883a80fca.tar.gz scummvm-rg350-6287426db0933bc8569407cde7b01c4883a80fca.tar.bz2 scummvm-rg350-6287426db0933bc8569407cde7b01c4883a80fca.zip |
MACOSX: Include ApplicationServices header
This should pacify buildbot. Somehow on my system, it does not need it, though.
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r-- | backends/platform/sdl/macosx/macosx.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/platform/sdl/macosx/macosx.cpp b/backends/platform/sdl/macosx/macosx.cpp index 79f35cde42..9b11eb2c09 100644 --- a/backends/platform/sdl/macosx/macosx.cpp +++ b/backends/platform/sdl/macosx/macosx.cpp @@ -33,8 +33,9 @@ #include "common/archive.h" #include "common/fs.h" -#include "CoreFoundation/CoreFoundation.h" -#include "CoreServices/CoreServices.h" +#include "ApplicationServices/ApplicationServices.h" // for LSOpenFSRef +#include "CoreFoundation/CoreFoundation.h" // for CF* stuff +#include "CoreServices/CoreServices.h" // for FSPathMakeRef OSystem_MacOSX::OSystem_MacOSX() : |