494a495,496
> /** The tick of the last reset */
> Tick lastReset;
508c510
< : current(0), total(0), last(0)
---
> : current(0), lastReset(0), total(0), last(0)
550c552
< return (Result)(total + current) / (Result)(curTick + 1);
---
> return (Result)(total + current) / (Result)(curTick - lastReset + 1);
575a578
> lastReset = curTick;
2553a2557,2560
> Temp(const AverageVector &s)
> : node(new VectorStatNode(s.info()))
> { }
>