CGE2: Get rid of more unused variables.

This commit is contained in:
uruk 2014-07-28 16:29:51 +02:00
parent ae4adf4a9f
commit fca11e77f8
4 changed files with 1 additions and 5 deletions

View File

@ -110,7 +110,6 @@ class EncryptedStream {
private:
CGE2Engine *_vm;
Common::SeekableReadStream *_readStream;
const char **_tab;
int _lineCount;
bool _error;
public:

View File

@ -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() {

View File

@ -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

View File

@ -90,7 +90,6 @@ private:
class Fx {
CGE2Engine *_vm;
int _size;
DataCk *loadWave(EncryptedStream *file);
Common::String name(int ref, int sub);