aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-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;