diff options
author | Max Horn | 2010-01-08 22:07:35 +0000 |
---|---|---|
committer | Max Horn | 2010-01-08 22:07:35 +0000 |
commit | 0cf53b025d8136a2f20ba405da1a696d0aa8767a (patch) | |
tree | 72e4241bf099c72e1f0a843c5632594f6b4947f5 /engines/scumm | |
parent | 474d49946f5254bff7ac6a490fcc3b02655fae23 (diff) | |
download | scummvm-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/scumm')
-rw-r--r-- | engines/scumm/saveload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/saveload.cpp b/engines/scumm/saveload.cpp index f29bb6d283..1ba7cdbce1 100644 --- a/engines/scumm/saveload.cpp +++ b/engines/scumm/saveload.cpp @@ -223,7 +223,7 @@ void ScummEngine_v4::prepareSavegame() { if (!writeStream->err()) { // wrap uncompressing MemoryReadStream around the savegame data _savePreparedSavegame = Common::wrapCompressedReadStream( - new Common::MemoryReadStream(memStream->getData(), memStream->size(), Common::DisposeAfterUse::YES)); + new Common::MemoryReadStream(memStream->getData(), memStream->size(), DisposeAfterUse::YES)); } } // free the CompressedWriteStream and MemoryWriteStreamDynamic |