mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-12-15 00:28:58 -05:00
fixd drand48() call
This commit is contained in:
parent
2eb48e0305
commit
96c150caf2
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ void GxsGroupFeedItem::requestGroup()
|
|||
void GxsGroupFeedItem::deferred_update()
|
||||
{
|
||||
mLastDelay = (int)(float(mLastDelay)*1.2);
|
||||
mLastDelay += 100.0*drand48();
|
||||
mLastDelay += 100.0*RsRandom::random_f32();
|
||||
|
||||
if(mLastDelay < 10000.0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue