1SDL_Delay(3) SDL API Reference SDL_Delay(3)
2
3
4
6 SDL_Delay - Wait a specified number of milliseconds before returning.
7
9 #include "SDL.h"
10
11 void SDL_Delay(Uint32 ms);
12
14 Wait a specified number of milliseconds before returning. SDL_Delay
15 will wait at least the specified time, but possible longer due to OS
16 scheduling.
17
18 Note:
19
20 Count on a delay granularity of at least 10 ms. Some platforms
21 have shorter clock ticks but this is the most common.
22
24 SDL_AddTimer
25
26
27
28SDL Tue 11 Sep 2001, 23:01 SDL_Delay(3)