diff options
| author | Willem Jan Palenstijn | 2011-08-22 08:53:42 +0200 |
|---|---|---|
| committer | Willem Jan Palenstijn | 2011-08-22 08:57:06 +0200 |
| commit | 4f748884bc48cea7d92b7c28b53744a9a92c2f0c (patch) | |
| tree | f5b942cc6a4ea5bda64f125b0aa7ab76d7b058d5 /backends/fs | |
| parent | ae19be062824c7e17632d2c4da7ba5c2f4624095 (diff) | |
| parent | c39b7491e6a23450ae0dc41ca6f3c3b06ed91c2e (diff) | |
| download | scummvm-rg350-4f748884bc48cea7d92b7c28b53744a9a92c2f0c.tar.gz scummvm-rg350-4f748884bc48cea7d92b7c28b53744a9a92c2f0c.tar.bz2 scummvm-rg350-4f748884bc48cea7d92b7c28b53744a9a92c2f0c.zip | |
Merge pull request #67 from chrisws/initial-bada-port-master
This is the initial implementation of the BADA port.
Diffstat (limited to 'backends/fs')
| -rw-r--r-- | backends/fs/stdiostream.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/fs/stdiostream.cpp b/backends/fs/stdiostream.cpp index 7342df0029..3ea0f9898b 100644 --- a/backends/fs/stdiostream.cpp +++ b/backends/fs/stdiostream.cpp @@ -20,6 +20,8 @@ * */ +#if !defined(DISABLE_STDIO_FILESTREAM) + // Disable symbol overrides so that we can use FILE, fopen etc. #define FORBIDDEN_SYMBOL_ALLOW_ALL @@ -100,3 +102,5 @@ StdioStream *StdioStream::makeFromPath(const Common::String &path, bool writeMod return new StdioStream(handle); return 0; } + +#endif |
