mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 23:49:55 +02:00
remove a stray space
This commit is contained in:
parent
fb7646b02b
commit
87e586dfe6
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ void SimpleMovingAverage::reset() {
|
||||||
|
|
||||||
float SimpleMovingAverage::getEventDeltaAverage() const {
|
float SimpleMovingAverage::getEventDeltaAverage() const {
|
||||||
return (ONE_MINUS_WEIGHTING * _eventDeltaAverage) +
|
return (ONE_MINUS_WEIGHTING * _eventDeltaAverage) +
|
||||||
(WEIGHTING * ((usecTimestampNow() - _lastEventTimestamp) / 1000000.0f ));
|
(WEIGHTING * ((usecTimestampNow() - _lastEventTimestamp) / 1000000.0f));
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t SimpleMovingAverage::getUsecsSinceLastEvent() const {
|
uint64_t SimpleMovingAverage::getUsecsSinceLastEvent() const {
|
||||||
|
|
Loading…
Reference in a new issue