From 471364077953509ae7528d3097ca746fe5588f7c Mon Sep 17 00:00:00 2001 From: richiesams Date: Fri, 19 Jul 2013 10:24:02 -0500 Subject: ZVISION: Remove extraneous member variable --- engines/zvision/lzss_read_stream.cpp | 1 - engines/zvision/lzss_read_stream.h | 1 - 2 files changed, 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: -- cgit v1.2.3