aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2009-02-28 19:31:42 +0000
committerWillem Jan Palenstijn2009-02-28 19:31:42 +0000
commit460131f5d35fffba4126cdf4ea24f2f32cfebc25 (patch)
tree4e5c7e8699685967c4e27acd713a7a9558dc7458
parentf38e6b0d766a0cb19e91b816d0f42a77d368b730 (diff)
downloadscummvm-rg350-460131f5d35fffba4126cdf4ea24f2f32cfebc25.tar.gz
scummvm-rg350-460131f5d35fffba4126cdf4ea24f2f32cfebc25.tar.bz2
scummvm-rg350-460131f5d35fffba4126cdf4ea24f2f32cfebc25.zip
Remove misleading comment.
svn-id: r38977
-rw-r--r--backends/timer/default/default-timer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/timer/default/default-timer.cpp b/backends/timer/default/default-timer.cpp
index 8d766740c4..bd2222bbbc 100644
--- a/backends/timer/default/default-timer.cpp
+++ b/backends/timer/default/default-timer.cpp
@@ -93,8 +93,7 @@ void DefaultTimerManager::handler() {
_head->next = slot->next;
// Update the fire time and reinsert the TimerSlot into the priority
- // queue. Has to be done before the timer callback is invoked, in case
- // the callback wants to remove itself.
+ // queue.
assert(slot->interval > 0);
slot->nextFireTime += (slot->interval / 1000);
slot->nextFireTimeMicro += (slot->interval % 1000);