aboutsummaryrefslogtreecommitdiff
path: root/common/timer.h
diff options
context:
space:
mode:
authorMax Horn2004-08-22 13:27:34 +0000
committerMax Horn2004-08-22 13:27:34 +0000
commit759cd67de518a583804ccfb14d5fead44ef05e96 (patch)
tree6692779fa4d01fecbf54f0ab162df7cfefe73975 /common/timer.h
parent50719f7b6843ba6383ca75c881af589d947150f2 (diff)
downloadscummvm-rg350-759cd67de518a583804ccfb14d5fead44ef05e96.tar.gz
scummvm-rg350-759cd67de518a583804ccfb14d5fead44ef05e96.tar.bz2
scummvm-rg350-759cd67de518a583804ccfb14d5fead44ef05e96.zip
cleanup of TimerProc mess
svn-id: r14683
Diffstat (limited to 'common/timer.h')
-rw-r--r--common/timer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/timer.h b/common/timer.h
index d4ce52cbad..814612bd85 100644
--- a/common/timer.h
+++ b/common/timer.h
@@ -26,13 +26,14 @@
#define MAX_TIMERS 2
-typedef void (*TimerProc)(void *refCon);
#ifdef __MORPHOS__
#include "morphos_timer.h"
#else
class Timer {
+public:
+ typedef void (*TimerProc)(void *refCon);
private:
OSystem *_system;