Sync wiki -> header

This commit is contained in:
Ryan C. Gordon 2021-11-10 15:21:01 -05:00
parent 98c9836287
commit b42ae3dbfe
No known key found for this signature in database
GPG key ID: FA148B892AB48044
6 changed files with 103 additions and 117 deletions

View file

@ -61,9 +61,9 @@ extern DECLSPEC Uint32 SDLCALL SDL_GetTicks(void);
* Get the number of milliseconds since SDL library initialization.
*
* Note that you should not use the SDL_TICKS_PASSED macro with values
* returned by this function, as that macro does clever math to compensate
* for the 32-bit overflow every ~49 days that SDL_GetTicks() suffers from.
* 64-bit values from this function can be safely compared directly.
* returned by this function, as that macro does clever math to compensate for
* the 32-bit overflow every ~49 days that SDL_GetTicks() suffers from. 64-bit
* values from this function can be safely compared directly.
*
* For example, if you want to wait 100 ms, you could do this:
*