aboutsummaryrefslogtreecommitdiff
path: root/common/memstream.h
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2016-07-06 21:09:29 +0200
committerGitHub2016-07-06 21:09:29 +0200
commit82eea1491bbc5bd4ba8b1d1a005d0975255edccd (patch)
tree6740a0e9084bc81561152de1f558c70c18a171da /common/memstream.h
parent9382dab811428af7a3329deebc3449c6ab8b83c8 (diff)
parentd832a232411e3f931fba41b1a92155264156d1a5 (diff)
downloadscummvm-rg350-82eea1491bbc5bd4ba8b1d1a005d0975255edccd.tar.gz
scummvm-rg350-82eea1491bbc5bd4ba8b1d1a005d0975255edccd.tar.bz2
scummvm-rg350-82eea1491bbc5bd4ba8b1d1a005d0975255edccd.zip
Merge pull request #775 from wjp/sci32_readwrite
SCI32: Improve FileIO read-write support
Diffstat (limited to 'common/memstream.h')
-rw-r--r--common/memstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/memstream.h b/common/memstream.h
index a01973c6fa..94407f5cc9 100644
--- a/common/memstream.h
+++ b/common/memstream.h
@@ -157,7 +157,7 @@ public:
* that grows as it's written to.
*/
class MemoryWriteStreamDynamic : public WriteStream {
-private:
+protected:
uint32 _capacity;
uint32 _size;
byte *_ptr;