From 3ecb1a6e8554a6dcb443501aa79c31e31db0587b Mon Sep 17 00:00:00 2001 From: Jonas Diemer Date: Thu, 5 Feb 2026 14:48:07 +0100 Subject: [PATCH] fix: debug printf of cover name (#690) ## Summary Minor fix ### AI Usage While CrossPoint doesn't have restrictions on AI tools in contributing, please be transparent about their usage as it helps set the right context for reviewers. Did you use AI tools to help write this code? no --- src/activities/boot_sleep/SleepActivity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activities/boot_sleep/SleepActivity.cpp b/src/activities/boot_sleep/SleepActivity.cpp index f1ee92cd..b23e42cc 100644 --- a/src/activities/boot_sleep/SleepActivity.cpp +++ b/src/activities/boot_sleep/SleepActivity.cpp @@ -265,7 +265,7 @@ void SleepActivity::renderCoverSleepScreen() const { if (SdMan.openFileForRead("SLP", coverBmpPath, file)) { Bitmap bitmap(file); if (bitmap.parseHeaders() == BmpReaderError::Ok) { - Serial.printf("[SLP] Rendering sleep cover: %s\n", coverBmpPath); + Serial.printf("[SLP] Rendering sleep cover: %s\n", coverBmpPath.c_str()); renderBitmapSleepScreen(bitmap); return; }