Commit 38ba3e64 authored by Markus Kauppila's avatar Markus Kauppila

Fixed an issue with nonexistant function.

parent cdb6aa7f
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment