MOHAWK: Remove yet another useless variable

This commit is contained in:
Strangerke 2016-06-01 00:59:01 +02:00
parent 7aa4c32dd4
commit ac6cf328a9
2 changed files with 0 additions and 4 deletions

View File

@ -53,7 +53,6 @@ Feature::Feature(View *view) : _view(view) {
_dirty = false;
_needsReset = false;
_justReset = false;
_notifyDone = 0;
_done = false;
}
@ -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;
@ -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) {

View File

@ -141,7 +141,6 @@ public:
bool _dirty; // byte in old
bool _needsReset;
bool _justReset; // old
byte _notifyDone; // old
bool _done; // new
FeatureData _data;