MOHAWK: Remove yet another useless variable
This commit is contained in:
parent
7aa4c32dd4
commit
ac6cf328a9
2 changed files with 0 additions and 4 deletions
|
@ -53,7 +53,6 @@ Feature::Feature(View *view) : _view(view) {
|
||||||
_dirty = false;
|
_dirty = false;
|
||||||
_needsReset = false;
|
_needsReset = false;
|
||||||
_justReset = false;
|
_justReset = false;
|
||||||
_notifyDone = 0;
|
|
||||||
_done = false;
|
_done = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +95,6 @@ void Feature::setNodeDefaults(Feature *prev, Feature *next) {
|
||||||
_dirty = true;
|
_dirty = true;
|
||||||
_needsReset = true;
|
_needsReset = true;
|
||||||
_justReset = false; // old
|
_justReset = false; // old
|
||||||
_notifyDone = 0;
|
|
||||||
_done = false; // new
|
_done = false; // new
|
||||||
|
|
||||||
_nextTime = 0;
|
_nextTime = 0;
|
||||||
|
@ -141,7 +139,6 @@ void Feature::resetFeatureScript(uint16 enabled, uint16 scrbId) {
|
||||||
void Feature::resetFeature(bool notifyDone, Module::FeatureProc doneProc, uint16 scrbId) {
|
void Feature::resetFeature(bool notifyDone, Module::FeatureProc doneProc, uint16 scrbId) {
|
||||||
resetFeatureScript(1, scrbId);
|
resetFeatureScript(1, scrbId);
|
||||||
_doneProc = doneProc;
|
_doneProc = doneProc;
|
||||||
_notifyDone = notifyDone;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Feature::hide(bool clip) {
|
void Feature::hide(bool clip) {
|
||||||
|
|
|
@ -141,7 +141,6 @@ public:
|
||||||
bool _dirty; // byte in old
|
bool _dirty; // byte in old
|
||||||
bool _needsReset;
|
bool _needsReset;
|
||||||
bool _justReset; // old
|
bool _justReset; // old
|
||||||
byte _notifyDone; // old
|
|
||||||
bool _done; // new
|
bool _done; // new
|
||||||
|
|
||||||
FeatureData _data;
|
FeatureData _data;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue