MADS: Rex - Remove unused variables

This commit is contained in:
Strangerke 2014-09-29 00:29:47 +02:00
parent 913616f951
commit 2ffd169923
2 changed files with 1 additions and 2 deletions

View File

@ -451,6 +451,7 @@ TextView::TextView(MADSEngine *vm) : MenuView(vm) {
_font = _vm->_font->getFont(FONT_CONVERSATION);
_vm->_palette->resetGamePalette(4, 0);
load();
}
@ -656,7 +657,6 @@ void TextView::processText() {
void TextView::display() {
FullScreenDialog::display();
_sceneChanged = true;
}
void TextView::resetPalette() {

View File

@ -162,7 +162,6 @@ private:
static char _resourceName[100];
bool _animating;
bool _sceneChanged;
Common::Array<TextLine> _textLines;
Common::Point _pan;
int _panSpeed;