mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 00:29:40 +02:00
fix type signed/unsigned warning
This commit is contained in:
parent
d6ebbd8633
commit
9c34aed36d
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ void DdeFaceTracker::bindTo(const QHostAddress& host, quint16 port) {
|
|||
}
|
||||
|
||||
bool DdeFaceTracker::isActive() const {
|
||||
static const int ACTIVE_TIMEOUT_USECS = 3000000; //3 secs
|
||||
static const quint64 ACTIVE_TIMEOUT_USECS = 3000000; //3 secs
|
||||
return (usecTimestampNow() - _lastReceiveTimestamp < ACTIVE_TIMEOUT_USECS);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue