summaryrefslogtreecommitdiff
path: root/src/utils/timer.h
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2013-02-20 15:34:28 +0100
committerErik Schilling <ablu.erikschilling@googlemail.com>2013-02-20 15:34:28 +0100
commitc70c6d19c1cabf46b595591802bceab63d371788 (patch)
tree1c153d2bfe560171bad5889d528dc5cf110e8533 /src/utils/timer.h
parentd707495540581f8c1b9ab3d5007c9c4d1ab83b53 (diff)
parent587b7682e6bf7dd9e616c1d4789a5ed9aa986e6d (diff)
downloadmanaserv-c70c6d19c1cabf46b595591802bceab63d371788.tar.gz
manaserv-c70c6d19c1cabf46b595591802bceab63d371788.tar.bz2
manaserv-c70c6d19c1cabf46b595591802bceab63d371788.tar.xz
manaserv-c70c6d19c1cabf46b595591802bceab63d371788.zip
Merge branch 'master' into lpc2012
Conflicts: gameserver.cbp src/account-server/accounthandler.cpp src/game-server/attack.cpp src/game-server/attack.h src/game-server/being.cpp src/game-server/being.h src/game-server/character.cpp src/game-server/character.h src/game-server/inventory.cpp src/game-server/item.h src/game-server/monster.cpp src/game-server/monster.h
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 2c6ca891..2fb9e7b1 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.