Skip to content

Commit

Permalink
added log entry about frame size changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed Dec 7, 2024
1 parent ac5a32f commit e2c175c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/DMD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,7 @@ void DMD::ZeDMDThread()
if (m_pUpdateBufferQueue[bufferPosition]->width != width ||
m_pUpdateBufferQueue[bufferPosition]->height != height)
{
Log(DMDUtil_LogLevel_INFO, "Change frame size from %dx%d to %dx%d", width, height, m_pUpdateBufferQueue[bufferPosition]->width, m_pUpdateBufferQueue[bufferPosition]->height);
width = m_pUpdateBufferQueue[bufferPosition]->width;
height = m_pUpdateBufferQueue[bufferPosition]->height;
// Activate the correct scaling mode.
Expand Down

0 comments on commit e2c175c

Please sign in to comment.