Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed Jun 3, 2024
1 parent af58d46 commit 6487f33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DMD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ void DMD::SerumThread()
{
uint32_t result = Serum_Colorize(m_pUpdateBufferQueue[currentBufferPosition]->data);

Log(DMDUtil_LogLevel_DEBUG, "Serum: frameID=%d, rotation=%d, flags=%d", result, m_pSerum->rotationtimer,
Log(DMDUtil_LogLevel_DEBUG, "Serum: frameID=%lu, rotation=%lu, flags=%lu", m_pSerum->frameID, m_pSerum->rotationtimer,
m_pSerum->flags);

if (result != IDENTIFY_NO_FRAME)
Expand Down Expand Up @@ -814,7 +814,7 @@ void DMD::SerumThread()
{
uint32_t result = Serum_Rotate();

Log(DMDUtil_LogLevel_DEBUG, "Serum: rotation=%d, flags=%d", m_pSerum->rotationtimer, result & 0xfffff0000);
Log(DMDUtil_LogLevel_DEBUG, "Serum: rotation=%lu, flags%lu", m_pSerum->rotationtimer, result & 0xfffff0000);

if (result > 0)
{
Expand Down

0 comments on commit 6487f33

Please sign in to comment.