mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-03-22 23:45:06 +00:00
testintersections: fix conversion from time_t
to unsigned int
Emitted by MSVC
This commit is contained in:
parent
b771d9beec
commit
3c251ec41e
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue