summaryrefslogtreecommitdiffstats
path: root/src/utils/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/timer.h')
-rw-r--r--src/utils/timer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/timer.h b/src/utils/timer.h
index 2c6ca89..2fb9e7b 100644
--- a/src/utils/timer.h
+++ b/src/utils/timer.h
@@ -42,7 +42,7 @@ class Timer
*
* @param ms the interval in milliseconds
*/
- Timer(unsigned int ms);
+ Timer(unsigned ms);
/**
* Returns the number of elapsed ticks since last call.
@@ -67,13 +67,13 @@ class Timer
/**
* Changes the interval between two pulses.
*/
- void changeInterval(unsigned int newinterval);
+ void changeInterval(unsigned newinterval);
private:
/**
* Interval between two pulses.
*/
- unsigned int interval;
+ unsigned interval;
/**
* The time the last pulse occured.