A fork of https://github.com/crosspoint-reader/crosspoint-reader
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Jonas Diemer and committed by
GitHub
e94f056e 20c5d8cc

+1 -1
+1 -1
src/activities/boot_sleep/SleepActivity.cpp
··· 265 265 if (SdMan.openFileForRead("SLP", coverBmpPath, file)) { 266 266 Bitmap bitmap(file); 267 267 if (bitmap.parseHeaders() == BmpReaderError::Ok) { 268 - Serial.printf("[SLP] Rendering sleep cover: %s\n", coverBmpPath); 268 + Serial.printf("[SLP] Rendering sleep cover: %s\n", coverBmpPath.c_str()); 269 269 renderBitmapSleepScreen(bitmap); 270 270 return; 271 271 }