forked from Mirrorlandia_minetest/minetest
Add function to deregister a profiler from profiler list
This commit is contained in:
parent
d76957ee22
commit
6833e04bc5
@ -164,6 +164,13 @@ public:
|
||||
m_graphvalues.clear();
|
||||
}
|
||||
|
||||
void remove(const std::string& name)
|
||||
{
|
||||
JMutexAutoLock lock(m_mutex);
|
||||
m_avgcounts.erase(name);
|
||||
m_data.erase(name);
|
||||
}
|
||||
|
||||
private:
|
||||
JMutex m_mutex;
|
||||
std::map<std::string, float> m_data;
|
||||
|
Loading…
Reference in New Issue
Block a user