Fixed Visual Studio warning 4245

This commit is contained in:
Sam Lantinga 2023-03-30 14:02:06 -07:00
parent f341c06552
commit 85ee1498a5
6 changed files with 7 additions and 7 deletions

View file

@ -141,7 +141,7 @@ static int SDLCALL SDL_TimerThread(void *_data)
}
/* Initial delay if there are no timers */
delay = SDL_MUTEX_MAXWAIT;
delay = (Uint64)SDL_MUTEX_MAXWAIT;
tick = SDL_GetTicksNS();