HOPKINS: Fix initialization of timers in EventsManager

This commit is contained in:
Strangerke
2013-04-09 08:31:46 +02:00
parent 3e1622d68a
commit 11183ee982
+1 -2
View File
@@ -54,8 +54,7 @@ EventsManager::EventsManager(HopkinsEngine *vm) {
_objectBuf = NULL;
Common::fill(&_keyState[0], &_keyState[256], false);
_priorCounterTime = 0;
_priorFrameTime = 0;
_priorCounterTime = _priorFrameTime = g_system->getMillis();
}
EventsManager::~EventsManager() {