diff --git a/server/TracyDecayValue.hpp b/server/TracyDecayValue.hpp index bcce09fa..dff7cb4d 100644 --- a/server/TracyDecayValue.hpp +++ b/server/TracyDecayValue.hpp @@ -10,9 +10,9 @@ template class DecayValue { public: - DecayValue( const T& init ) + DecayValue( const T& init, bool active = false ) : m_value( init ) - , m_active( false ) + , m_active( active ) { }