aboutsummaryrefslogtreecommitdiff
path: root/engines/made/redreader.cpp
diff options
context:
space:
mode:
authorMax Horn2010-01-08 22:07:35 +0000
committerMax Horn2010-01-08 22:07:35 +0000
commit0cf53b025d8136a2f20ba405da1a696d0aa8767a (patch)
tree72e4241bf099c72e1f0a843c5632594f6b4947f5 /engines/made/redreader.cpp
parent474d49946f5254bff7ac6a490fcc3b02655fae23 (diff)
downloadscummvm-rg350-0cf53b025d8136a2f20ba405da1a696d0aa8767a.tar.gz
scummvm-rg350-0cf53b025d8136a2f20ba405da1a696d0aa8767a.tar.bz2
scummvm-rg350-0cf53b025d8136a2f20ba405da1a696d0aa8767a.zip
Move DisposeAfterUse::Flag from Common to global namespace, and into a new header common/types.h
svn-id: r47180
Diffstat (limited to 'engines/made/redreader.cpp')
-rw-r--r--engines/made/redreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/redreader.cpp b/engines/made/redreader.cpp
index c89068b16e..4ca8d27eab 100644
--- a/engines/made/redreader.cpp
+++ b/engines/made/redreader.cpp
@@ -45,7 +45,7 @@ Common::MemoryReadStream *RedReader::load(const char *redFilename, const char *f
lzhDec->decompress(fd, fileBuf, fileEntry.compSize, fileEntry.origSize);
delete lzhDec;
- return new Common::MemoryReadStream(fileBuf, fileEntry.origSize, Common::DisposeAfterUse::YES);
+ return new Common::MemoryReadStream(fileBuf, fileEntry.origSize, DisposeAfterUse::YES);
}