mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-02 17:03:13 +00:00
MOHAWK: Remove yet another useless variable
This commit is contained in:
parent
7aa4c32dd4
commit
ac6cf328a9
@ -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) {
|
||||
|
@ -141,7 +141,6 @@ public:
|
||||
bool _dirty; // byte in old
|
||||
bool _needsReset;
|
||||
bool _justReset; // old
|
||||
byte _notifyDone; // old
|
||||
bool _done; // new
|
||||
|
||||
FeatureData _data;
|
||||
|
Loading…
x
Reference in New Issue
Block a user