mirror of
https://github.com/SlimeVR/SlimeVR-Tracker-ESP.git
synced 2026-04-06 02:01:57 +02:00
Make Statusmanager shut up
This commit is contained in:
@@ -8,12 +8,22 @@ namespace SlimeVR
|
||||
{
|
||||
if (value)
|
||||
{
|
||||
if (m_Status & status)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
m_Logger.trace("Removed status %s", statusToString(status));
|
||||
|
||||
m_Status |= status;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!(m_Status & status))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
m_Logger.trace("Added status %s", statusToString(status));
|
||||
|
||||
m_Status &= ~status;
|
||||
|
||||
Reference in New Issue
Block a user