diff options
Diffstat (limited to 'engines/mohawk')
| -rw-r--r-- | engines/mohawk/view.cpp | 3 | ||||
| -rw-r--r-- | engines/mohawk/view.h | 1 | 
2 files changed, 0 insertions, 4 deletions
diff --git a/engines/mohawk/view.cpp b/engines/mohawk/view.cpp index e22556ae06..5b061ae1fc 100644 --- a/engines/mohawk/view.cpp +++ b/engines/mohawk/view.cpp @@ -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) { diff --git a/engines/mohawk/view.h b/engines/mohawk/view.h index d68ebaedbf..463715b765 100644 --- a/engines/mohawk/view.h +++ b/engines/mohawk/view.h @@ -141,7 +141,6 @@ public:  	bool _dirty; // byte in old  	bool _needsReset;  	bool _justReset; // old -	byte _notifyDone; // old  	bool _done; // new  	FeatureData _data;  | 
