testintersections: fix conversion from `time_t` to `unsigned int`

Emitted by MSVC
This commit is contained in:
Anonymous Maarten 2022-10-06 01:10:22 +02:00 committed by Anonymous Maarten
parent b771d9beec
commit 3c251ec41e
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ main(int argc, char *argv[])
SDL_RenderClear(renderer);
}
srand(time(NULL));
srand((unsigned int)time(NULL));
/* Main render loop */
frames = 0;