MADS: Remove a useless variable

This commit is contained in:
Strangerke 2015-01-31 12:41:03 +01:00
parent c0b2d47f38
commit 15a10d2744
2 changed files with 1 additions and 3 deletions

View File

@ -44,7 +44,6 @@ EventsManager::EventsManager(MADSEngine *vm) {
_vD2 = 0;
_mouseStatusCopy = 0;
_mouseMoved = false;
_vD8 = 0;
_rightMousePressed = false;
_eventTarget = nullptr;
}
@ -261,7 +260,7 @@ void EventsManager::waitForNextFrame() {
void EventsManager::initVars() {
_mousePos = Common::Point(-1, -1);
_mouseStatusCopy = _mouseStatus;
_vD2 = _vD8 = 0;
_vD2 = 0;
}
} // End of namespace MADS

View File

@ -70,7 +70,6 @@ public:
int _vD2;
int _mouseStatusCopy;
bool _mouseMoved;
int _vD8;
Common::Stack<Common::Event> _pendingKeys;
public:
/**