diff options
author | Lars Persson | 2008-10-18 12:20:46 +0000 |
---|---|---|
committer | Lars Persson | 2008-10-18 12:20:46 +0000 |
commit | 167614f6f8b096be51a5fe485dd4a0200bcb1a9c (patch) | |
tree | 8773dd3fa743978fe2e4d9bfa9b1142e33b34607 /graphics | |
parent | a67c16c6f28ba3f98d30108fb5cbcc94f1da9314 (diff) | |
download | scummvm-rg350-167614f6f8b096be51a5fe485dd4a0200bcb1a9c.tar.gz scummvm-rg350-167614f6f8b096be51a5fe485dd4a0200bcb1a9c.tar.bz2 scummvm-rg350-167614f6f8b096be51a5fe485dd4a0200bcb1a9c.zip |
Need a differentiating zlib.h filename for SymbianOS.
svn-id: r34820
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/dxa_player.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/graphics/dxa_player.cpp b/graphics/dxa_player.cpp index f4c93a51f1..2430f46eea 100644 --- a/graphics/dxa_player.cpp +++ b/graphics/dxa_player.cpp @@ -29,7 +29,11 @@ #include "common/util.h" #ifdef USE_ZLIB -#include <zlib.h> + #ifdef __SYMBIAN32__ + #include <zlib\zlib.h> + #else + #include <zlib.h> + #endif #endif namespace Graphics { |