mirror of
https://github.com/yawut/SDL.git
synced 2026-08-20 07:44:03 -05:00
Fixed an issue with nonexistant function.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user