mirror of
https://github.com/lubosz/overte.git
synced 2025-04-19 17:03:43 +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 {
|
||||
return (ONE_MINUS_WEIGHTING * _eventDeltaAverage) +
|
||||
(WEIGHTING * ((usecTimestampNow() - _lastEventTimestamp) / 1000000.0f ));
|
||||
(WEIGHTING * ((usecTimestampNow() - _lastEventTimestamp) / 1000000.0f));
|
||||
}
|
||||
|
||||
uint64_t SimpleMovingAverage::getUsecsSinceLastEvent() const {
|
||||
|
|
Loading…
Reference in a new issue