Fixed compiler warning

This commit is contained in:
Sam Lantinga
2017-12-09 13:05:56 -08:00
parent dc37345324
commit d67f5a4058

View File

@@ -70,7 +70,7 @@ void SDLTest_RandomInitTime(SDLTest_RandomContext * rndContext)
srand((unsigned int)time(NULL));
a=rand();
srand(clock());
srand((unsigned int)clock());
b=rand();
SDLTest_RandomInit(rndContext, a, b);
}