We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a602a05 commit 2929d4eCopy full SHA for 2929d4e
src/DMD.cpp
@@ -283,7 +283,10 @@ bool DMD::DestroyLevelDMD(LevelDMD* pLevelDMD)
283
void DMD::AddRGB24DMD(RGB24DMD* pRGB24DMD)
284
{
285
m_rgb24DMDs.push_back(pRGB24DMD);
286
- if (!m_pRGB24DMDThread) m_pRGB24DMDThread = new std::thread(&DMD::RGB24DMDThread, this);
+ if (!m_pRGB24DMDThread) {
287
+ m_pRGB24DMDThread = new std::thread(&DMD::RGB24DMDThread, this);
288
+ Log(DMDUtil_LogLevel_INFO, "RGB24DMDThread started");
289
+ }
290
}
291
292
RGB24DMD* DMD::CreateRGB24DMD(uint16_t width, uint16_t height)
0 commit comments