mirror of
https://github.com/yawut/SDL.git
synced 2026-03-31 14:14:41 -05:00
Fixed an issue with nonexistant function.
This commit is contained in:
parent
8c2769cf10
commit
98c51aa111
|
|
@ -147,8 +147,8 @@ RandomUint64()
|
|||
Uint64 value;
|
||||
|
||||
Uint32 *vp = (Uint32*)&value;
|
||||
vp[0] = RandomSint32();
|
||||
vp[1] = RandomSint32();
|
||||
vp[0] = RandomInteger();
|
||||
vp[1] = RandomInteger();
|
||||
|
||||
return value;
|
||||
}
|
||||
|
|
@ -159,8 +159,8 @@ RandomSint64()
|
|||
Uint64 value;
|
||||
|
||||
Uint32 *vp = (Uint32*)&value;
|
||||
vp[0] = RandomSint32();
|
||||
vp[1] = RandomSint32();
|
||||
vp[0] = RandomInteger();
|
||||
vp[1] = RandomInteger();
|
||||
|
||||
return value;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user