mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-03 08:28:29 +00:00
Fix warnings: static, include, un-initialized vairables
This commit is contained in:
@@ -83,7 +83,8 @@ unsigned int SDLTest_Random(SDLTest_RandomContext * rndContext)
|
||||
|
||||
if (rndContext==NULL) return -1;
|
||||
|
||||
xh = rndContext->x >> 16, xl = rndContext->x & 65535;
|
||||
xh = rndContext->x >> 16;
|
||||
xl = rndContext->x & 65535;
|
||||
rndContext->x = rndContext->x * rndContext->a + rndContext->c;
|
||||
rndContext->c =
|
||||
xh * rndContext->ah + ((xh * rndContext->al) >> 16) +
|
||||
|
Reference in New Issue
Block a user