Skip to content

Commit

Permalink
MOHAWK: Remove yet another useless variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed May 31, 2016
1 parent 7aa4c32 commit ac6cf32
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions engines/mohawk/view.cpp
Expand Up @@ -53,7 +53,6 @@ Feature::Feature(View *view) : _view(view) {
_dirty = false;
_needsReset = false;
_justReset = false;
_notifyDone = 0;
_done = false;
}

Expand Down Expand Up @@ -96,7 +95,6 @@ void Feature::setNodeDefaults(Feature *prev, Feature *next) {
_dirty = true;
_needsReset = true;
_justReset = false; // old
_notifyDone = 0;
_done = false; // new

_nextTime = 0;
Expand Down Expand Up @@ -141,7 +139,6 @@ void Feature::resetFeatureScript(uint16 enabled, uint16 scrbId) {
void Feature::resetFeature(bool notifyDone, Module::FeatureProc doneProc, uint16 scrbId) {
resetFeatureScript(1, scrbId);
_doneProc = doneProc;
_notifyDone = notifyDone;
}

void Feature::hide(bool clip) {
Expand Down
1 change: 0 additions & 1 deletion engines/mohawk/view.h
Expand Up @@ -141,7 +141,6 @@ class Feature {
bool _dirty; // byte in old
bool _needsReset;
bool _justReset; // old
byte _notifyDone; // old
bool _done; // new

FeatureData _data;
Expand Down

0 comments on commit ac6cf32

Please sign in to comment.