aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/cge2/fileio.h1
-rw-r--r--engines/cge2/snail.cpp2
-rw-r--r--engines/cge2/snail.h2
-rw-r--r--engines/cge2/sound.h1
4 files changed, 1 insertions, 5 deletions
diff --git a/engines/cge2/fileio.h b/engines/cge2/fileio.h
index 093850735a..0732b24c7b 100644
--- a/engines/cge2/fileio.h
+++ b/engines/cge2/fileio.h
@@ -110,7 +110,6 @@ class EncryptedStream {
private:
CGE2Engine *_vm;
Common::SeekableReadStream *_readStream;
- const char **_tab;
int _lineCount;
bool _error;
public:
diff --git a/engines/cge2/snail.cpp b/engines/cge2/snail.cpp
index b4a78f0aaf..b6ae9dbdb0 100644
--- a/engines/cge2/snail.cpp
+++ b/engines/cge2/snail.cpp
@@ -46,7 +46,7 @@ const char *CommandHandler::_commandText[] = {
CommandHandler::CommandHandler(CGE2Engine *vm, bool turbo)
: _turbo(turbo), _textDelay(false), _timerExpiry(0), _talkEnable(true),
_head(0), _tail(0), _commandList((Command *)malloc(sizeof(Command)* 256)),
- _count(1), _vm(vm) {
+ _vm(vm) {
}
CommandHandler::~CommandHandler() {
diff --git a/engines/cge2/snail.h b/engines/cge2/snail.h
index 62201a9ab8..82df181878 100644
--- a/engines/cge2/snail.h
+++ b/engines/cge2/snail.h
@@ -121,10 +121,8 @@ private:
bool _turbo;
uint8 _head;
uint8 _tail;
- bool _busy;
bool _textDelay;
uint32 _timerExpiry; // "pause" in the original.
- int _count;
};
} // End of namespace CGE2
diff --git a/engines/cge2/sound.h b/engines/cge2/sound.h
index b97cd11bd0..2960dc32e4 100644
--- a/engines/cge2/sound.h
+++ b/engines/cge2/sound.h
@@ -90,7 +90,6 @@ private:
class Fx {
CGE2Engine *_vm;
- int _size;
DataCk *loadWave(EncryptedStream *file);
Common::String name(int ref, int sub);