Fix warnings: static, include, un-initialized vairables

This commit is contained in:
Sylvain
2021-11-23 10:33:12 +01:00
parent 2a24418bd3
commit fae7034901
12 changed files with 27 additions and 24 deletions

View File

@@ -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) +