mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
CGE2: Get rid of more unused variables.
This commit is contained in:
parent
ae4adf4a9f
commit
fca11e77f8
@ -110,7 +110,6 @@ class EncryptedStream {
|
||||
private:
|
||||
CGE2Engine *_vm;
|
||||
Common::SeekableReadStream *_readStream;
|
||||
const char **_tab;
|
||||
int _lineCount;
|
||||
bool _error;
|
||||
public:
|
||||
|
@ -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() {
|
||||
|
@ -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
|
||||
|
@ -90,7 +90,6 @@ private:
|
||||
|
||||
class Fx {
|
||||
CGE2Engine *_vm;
|
||||
int _size;
|
||||
|
||||
DataCk *loadWave(EncryptedStream *file);
|
||||
Common::String name(int ref, int sub);
|
||||
|
Loading…
x
Reference in New Issue
Block a user