diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2013-01-09 13:23:43 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2013-01-09 13:23:43 +0100 |
commit | 16074a7c2c8197a061281a6880ddbc3967d8ea0c (patch) | |
tree | bd0cc650944aaeb38e87d43b94e43c1ab94bb2c7 /src/utils/timer.cpp | |
parent | 562b403a66a6a96d883620b27455564d50e3d49b (diff) | |
download | manaserv-16074a7c2c8197a061281a6880ddbc3967d8ea0c.tar.gz manaserv-16074a7c2c8197a061281a6880ddbc3967d8ea0c.tar.bz2 manaserv-16074a7c2c8197a061281a6880ddbc3967d8ea0c.tar.xz manaserv-16074a7c2c8197a061281a6880ddbc3967d8ea0c.zip |
Replaced 'unsigned int' with 'unsigned'
Same thing, but shorter.
Diffstat (limited to 'src/utils/timer.cpp')
-rw-r--r-- | src/utils/timer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/timer.cpp b/src/utils/timer.cpp index aea10add..c01a4134 100644 --- a/src/utils/timer.cpp +++ b/src/utils/timer.cpp @@ -43,7 +43,7 @@ static uint64_t getTimeInMillisec() namespace utils { -Timer::Timer(unsigned int ms) +Timer::Timer(unsigned ms) { active = false; interval = ms; @@ -97,7 +97,7 @@ void Timer::stop() active = false; } -void Timer::changeInterval(unsigned int newinterval) +void Timer::changeInterval(unsigned newinterval) { interval = newinterval; } |