aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/zvision/lzss_read_stream.cpp1
-rw-r--r--engines/zvision/lzss_read_stream.h1
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: