diff options
author | Cameron Cawley | 2019-03-31 19:07:40 +0100 |
---|---|---|
committer | Filippos Karapetis | 2019-04-15 08:06:39 +0300 |
commit | bcef809e612177c2bcb7ca3f8682ea96d38c4cdc (patch) | |
tree | 14bc067ff02ef2e1aabd19360db67e22deb8704f /backends/fs | |
parent | 82f4ee86a9824a9cdfd5060d7bab23be381a46df (diff) | |
download | scummvm-rg350-bcef809e612177c2bcb7ca3f8682ea96d38c4cdc.tar.gz scummvm-rg350-bcef809e612177c2bcb7ca3f8682ea96d38c4cdc.tar.bz2 scummvm-rg350-bcef809e612177c2bcb7ca3f8682ea96d38c4cdc.zip |
WINCE: Fix compilation
Diffstat (limited to 'backends/fs')
-rw-r--r-- | backends/fs/stdiostream.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/fs/stdiostream.cpp b/backends/fs/stdiostream.cpp index 8206bd180f..a893149e9a 100644 --- a/backends/fs/stdiostream.cpp +++ b/backends/fs/stdiostream.cpp @@ -26,6 +26,9 @@ #define FORBIDDEN_SYMBOL_ALLOW_ALL #include "backends/fs/stdiostream.h" +#ifdef _WIN32_WCE +#include "backends/platform/wince/missing/fopen.h" +#endif StdioStream::StdioStream(void *handle) : _handle(handle) { assert(handle); |