From e2c175c4a815634547b498c59e22b11b2a01a39e Mon Sep 17 00:00:00 2001 From: Markus Kalkbrenner Date: Sat, 7 Dec 2024 14:03:17 +0100 Subject: [PATCH] added log entry about frame size changes --- src/DMD.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DMD.cpp b/src/DMD.cpp index 7014b8d..e1e08b8 100644 --- a/src/DMD.cpp +++ b/src/DMD.cpp @@ -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.