VOYEUR: Remove a useless function

This commit is contained in:
Strangerke 2014-02-26 07:43:11 +01:00
parent bcca831c68
commit 62d846d717
3 changed files with 0 additions and 8 deletions

View File

@ -85,10 +85,6 @@ EventsManager::EventsManager(): _intPtr(_gameData),
_fadeCount = 1;
}
void EventsManager::resetMouse() {
// No implementation
}
void EventsManager::startMainClockInt() {
_mainIntNode._intFunc = &EventsManager::mainVoyeurIntFunc;
_mainIntNode._flags = 0;

View File

@ -115,7 +115,6 @@ public:
EventsManager();
void setVm(VoyeurEngine *vm) { _vm = vm; }
void resetMouse();
void setMousePos(const Common::Point &p) { _mousePos = p; }
void startMainClockInt();
void sWaitFlip();

View File

@ -77,15 +77,12 @@ Common::Error VoyeurEngine::run() {
if (_iForceDeath >= 1 && _iForceDeath <= 4)
_voy._eventFlags |= EVTFLAG_VICTIM_PRESET;
_eventsManager.resetMouse();
if (doHeadTitle()) {
playStamp();
if (!shouldQuit())
doTailTitle();
}
//doHeadTitle();
return Common::kNoError;
}