diff options
author | richiesams | 2013-07-19 10:24:02 -0500 |
---|---|---|
committer | richiesams | 2013-08-04 13:32:29 -0500 |
commit | 471364077953509ae7528d3097ca746fe5588f7c (patch) | |
tree | aabd44d06b4fc3250eaf3bc560034339757d9015 /engines/zvision | |
parent | d546e11cf12d90eb246513ccc0be867172f0af96 (diff) | |
download | scummvm-rg350-471364077953509ae7528d3097ca746fe5588f7c.tar.gz scummvm-rg350-471364077953509ae7528d3097ca746fe5588f7c.tar.bz2 scummvm-rg350-471364077953509ae7528d3097ca746fe5588f7c.zip |
ZVISION: Remove extraneous member variable
Diffstat (limited to 'engines/zvision')
-rw-r--r-- | engines/zvision/lzss_read_stream.cpp | 1 | ||||
-rw-r--r-- | engines/zvision/lzss_read_stream.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/engines/zvision/lzss_read_stream.cpp b/engines/zvision/lzss_read_stream.cpp index 35c708a6c7..d169620a25 100644 --- a/engines/zvision/lzss_read_stream.cpp +++ b/engines/zvision/lzss_read_stream.cpp @@ -30,7 +30,6 @@ LzssReadStream::LzssReadStream(Common::SeekableReadStream *source) : _source(source), // It's convention to set the starting cursor position to blockSize - 16 _windowCursor(0x0FEE), - _readCursor(0), _eosFlag(false) { // Clear the window to null memset(_window, 0, _blockSize); diff --git a/engines/zvision/lzss_read_stream.h b/engines/zvision/lzss_read_stream.h index 0dea25b325..b2d6085a29 100644 --- a/engines/zvision/lzss_read_stream.h +++ b/engines/zvision/lzss_read_stream.h @@ -48,7 +48,6 @@ private: Common::SeekableReadStream *_source; char _window[_blockSize]; uint16 _windowCursor; - uint32 _readCursor; bool _eosFlag; public: |