diff options
author | Matthew Hoops | 2011-03-07 13:18:33 -0500 |
---|---|---|
committer | Matthew Hoops | 2011-03-07 13:18:33 -0500 |
commit | bc3638834b6ade93c24d9c96d457579e1675e0e3 (patch) | |
tree | 19db76b31593847cbee783f78cefab531bfd24ad /common | |
parent | c7d7e50155ddcbca6fc2143e255b6618a628db7f (diff) | |
download | scummvm-rg350-bc3638834b6ade93c24d9c96d457579e1675e0e3.tar.gz scummvm-rg350-bc3638834b6ade93c24d9c96d457579e1675e0e3.tar.bz2 scummvm-rg350-bc3638834b6ade93c24d9c96d457579e1675e0e3.zip |
COMMON: Add TODO to make compressed NE EXE handling transparent
Diffstat (limited to 'common')
-rw-r--r-- | common/winexe_ne.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/winexe_ne.cpp b/common/winexe_ne.cpp index dbb982e0ee..24e51f1c9e 100644 --- a/common/winexe_ne.cpp +++ b/common/winexe_ne.cpp @@ -86,6 +86,9 @@ bool NEResources::loadFromEXE(SeekableReadStream *stream) { bool NEResources::loadFromCompressedEXE(const String &fileName) { // Based on http://www.cabextract.org.uk/libmspack/doc/szdd_kwaj_format.html + // TODO: Merge this with with loadFromEXE() so the handling of the compressed + // EXE's is transparent + File file; if (!file.open(fileName)) |