mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 14:43:20 +00:00
testnative: fix conversion from time_t to unsigned int
Emitted by MSVC
This commit is contained in:
parent
8770689525
commit
7a7980fafa
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ main(int argc, char *argv[])
|
|||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Out of memory!\n");
|
||||
quit(2);
|
||||
}
|
||||
srand(time(NULL));
|
||||
srand((unsigned int)time(NULL));
|
||||
for (i = 0; i < NUM_SPRITES; ++i) {
|
||||
positions[i].x = rand() % (window_w - sprite_w);
|
||||
positions[i].y = rand() % (window_h - sprite_h);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue