aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2009-02-27 22:19:33 +0000
committerWillem Jan Palenstijn2009-02-27 22:19:33 +0000
commitde239a4bc5c6cdeb48b4fca0775dc34df787b84e (patch)
treebfeb55d395bb2184aca3c14615961d4f6d491bd0
parent9a89280527ad1b41843779b0a1763915de1e03cb (diff)
downloadscummvm-rg350-de239a4bc5c6cdeb48b4fca0775dc34df787b84e.tar.gz
scummvm-rg350-de239a4bc5c6cdeb48b4fca0775dc34df787b84e.tar.bz2
scummvm-rg350-de239a4bc5c6cdeb48b4fca0775dc34df787b84e.zip
Clarify timer API.
svn-id: r38938
-rw-r--r--common/timer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/timer.h b/common/timer.h
index 68f8aef258..c87c2b3240 100644
--- a/common/timer.h
+++ b/common/timer.h
@@ -51,7 +51,8 @@ public:
virtual bool installTimerProc(TimerProc proc, int32 interval, void *refCon) = 0;
/**
- * Remove the given timer callback. It will not be invoked anymore.
+ * Remove the given timer callback. It will not be invoked anymore,
+ * and no instance of this callback will be running anymore.
*/
virtual void removeTimerProc(TimerProc proc) = 0;
};