removed clang-format and clang_complete files from the repo
[dosdemo] / src / sdl / timer.c
1 #include <SDL/SDL.h>
2 #include "timer.h"
3
4 static unsigned long start_time;
5
6 void init_timer(int res_hz)
7 {
8 }
9
10 void reset_timer(void)
11 {
12         start_time = SDL_GetTicks();
13 }
14
15 unsigned long get_msec(void)
16 {
17         return SDL_GetTicks() - start_time;
18 }
19
20 void sleep_msec(unsigned long msec)
21 {
22         SDL_Delay(msec);
23 }