mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-03 15:41:41 +00:00
Increase timer accuracy again
svn-id: r24518
This commit is contained in:
parent
304c102613
commit
2826657932
@ -80,7 +80,7 @@ DefaultTimerManager::~DefaultTimerManager() {
|
||||
void DefaultTimerManager::handler() {
|
||||
Common::StackLock lock(_mutex);
|
||||
|
||||
const int32 curTime = g_system->getMillis();
|
||||
const int32 curTime = g_system->getMillis() * 1000;
|
||||
|
||||
// Repeat as long as there is a TimerSlot that is scheduled to fire.
|
||||
TimerSlot *slot = _head->next;
|
||||
@ -109,13 +109,11 @@ bool DefaultTimerManager::installTimerProc(TimerProc callback, int32 interval, v
|
||||
Common::StackLock lock(_mutex);
|
||||
|
||||
|
||||
interval /= 1000;
|
||||
|
||||
TimerSlot *slot = new TimerSlot;
|
||||
slot->callback = callback;
|
||||
slot->refCon = refCon;
|
||||
slot->interval = interval;
|
||||
slot->nextFireTime = g_system->getMillis() + interval;
|
||||
slot->nextFireTime = g_system->getMillis() * 1000 + interval;
|
||||
slot->next = 0;
|
||||
|
||||
insertPrioQueue(_head, slot);
|
||||
|
Loading…
Reference in New Issue
Block a user