mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-25 15:35:49 -04:00
compatible to g++11 / QT5
method suggested by cyril
This commit is contained in:
parent
5783c59463
commit
aca88308ea
9 changed files with 27 additions and 11 deletions
|
@ -69,6 +69,10 @@ static double getCurrentTS()
|
|||
return cts;
|
||||
}
|
||||
|
||||
const double RsServer::minTimeDelta = 0.1; // 25;
|
||||
const double RsServer::maxTimeDelta = 0.5;
|
||||
const double RsServer::kickLimit = 0.15;
|
||||
|
||||
|
||||
RsServer::RsServer()
|
||||
: coreMutex("RsServer")
|
||||
|
|
|
@ -194,9 +194,9 @@ class RsServer: public RsControl, public RsTickingThread
|
|||
double mAvgTickRate ;
|
||||
double mTimeDelta ;
|
||||
|
||||
static const double minTimeDelta = 0.1; // 25;
|
||||
static const double maxTimeDelta = 0.5;
|
||||
static const double kickLimit = 0.15;
|
||||
static const double minTimeDelta; // 25;
|
||||
static const double maxTimeDelta;
|
||||
static const double kickLimit;
|
||||
};
|
||||
|
||||
/* Helper function to convert windows paths
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue