aboutsummaryrefslogtreecommitdiff
path: root/common/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/timer.h')
-rw-r--r--common/timer.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/common/timer.h b/common/timer.h
index 0ed416679d..78877963f4 100644
--- a/common/timer.h
+++ b/common/timer.h
@@ -36,8 +36,7 @@ class Timer {
private:
Engine *_engine;
- bool _initialized;
- bool _timerRunning;
+ void *_mutex;
void *_timerHandler;
int32 _thisTime;
int32 _lastTime;
@@ -49,11 +48,9 @@ private:
} _timerSlots[MAX_TIMERS];
public:
- Timer(Engine *engine);
- ~Timer();
+ Timer(Engine *engine);
+ ~Timer();
- bool init();
- void release();
bool installProcedure(TimerProc procedure, int32 interval);
void releaseProcedure(TimerProc procedure);