SDL_Delay function
SDL_Delay -- Waits a specified number of milliseconds before returning.
Syntax
void SDL_Delay(Uint32 ms);
Description
This function waits a specified number of milliseconds before returning. It waits at least the specified time, but possible longer due to OS scheduling. The delay granularity is at least 10 ms. Some platforms have shorter clock ticks but this is the most common.
See also
Requirements
Header |
SDL.h |
Version |
1.2.13 |
Shared object |
libSDL.so |
DLL |
SDL.dll |
