mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-01-25 22:26:08 +00:00
Fixed warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user