Have dummy controller shut down its background thread immediately during constructor to save resources

This commit is contained in:
Adam Honse
2026-03-26 23:34:33 -05:00
parent 4e72d907a1
commit 78bfe6f198

View File

@@ -34,7 +34,12 @@
RGBController_Dummy::RGBController_Dummy()
{
/*-----------------------------------------------------*\
| Dummy controller doesn't actually use its background |
| thread, so shut it down immediately to save resources |
\*-----------------------------------------------------*/
Shutdown();
AccessMutex.unlock();
}
RGBController_Dummy::~RGBController_Dummy()