mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-20 08:53:51 +00:00
MADS: Remove a useless variable
This commit is contained in:
parent
c0b2d47f38
commit
15a10d2744
@ -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
|
||||
|
@ -70,7 +70,6 @@ public:
|
||||
int _vD2;
|
||||
int _mouseStatusCopy;
|
||||
bool _mouseMoved;
|
||||
int _vD8;
|
||||
Common::Stack<Common::Event> _pendingKeys;
|
||||
public:
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user