Fixed warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch

main
Sam Lantinga 2024-02-03 11:06:25 -08:00
parent c3e821fa80
commit f107393ed5
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ unsigned int SDLTest_Random(SDLTest_RandomContext *rndContext)
unsigned int xh, xl;
if (!rndContext) {
return -1;
return 0;
}
xh = rndContext->x >> 16;