Fixed building with Visual Studio 2010

This commit is contained in:
Sam Lantinga
2023-01-09 18:30:23 -08:00
parent 9fa55d9cab
commit 56522034db
7 changed files with 7 additions and 7 deletions

View File

@@ -42,7 +42,7 @@ extern "C" {
*/
#define SDL_MS_PER_SECOND 1000
#define SDL_US_PER_SECOND 1000000
#define SDL_NS_PER_SECOND 1000000000LLU
#define SDL_NS_PER_SECOND 1000000000LL
#define SDL_NS_PER_MS 1000000
#define SDL_NS_PER_US 1000
#define SDL_MS_TO_NS(MS) (((Uint64)(MS)) * SDL_NS_PER_MS)