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/cruise | |
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/cruise')
-rw-r--r-- | engines/cruise/overlay.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cruise/overlay.cpp b/engines/cruise/overlay.cpp index f93e8f37fc..f0611492bd 100644 --- a/engines/cruise/overlay.cpp +++ b/engines/cruise/overlay.cpp @@ -209,7 +209,7 @@ int loadOverlay(const char *scriptName) { debug(1, "OVL loading done..."); - Common::MemoryReadStream s(unpackedBuffer, unpackedSize, Common::DisposeAfterUse::YES); + Common::MemoryReadStream s(unpackedBuffer, unpackedSize, DisposeAfterUse::YES); unpackedBuffer = NULL; ovlData = overlayTable[scriptIdx].ovlData; @@ -590,7 +590,7 @@ int loadOverlay(const char *scriptName) { loadPackedFileToMem(fileIdx, (uint8 *) unpackedBuffer); } - Common::MemoryReadStream s2(unpackedBuffer, unpackedSize, Common::DisposeAfterUse::YES); + Common::MemoryReadStream s2(unpackedBuffer, unpackedSize, DisposeAfterUse::YES); unpackedBuffer = NULL; ovlData->specialString1Length = s2.readUint16BE(); |