From 06be7915d844e94d32a981145be23f119f6d8f54 Mon Sep 17 00:00:00 2001 From: Eliz Kilic Date: Sat, 24 Jan 2026 01:04:02 +0000 Subject: [PATCH] update --- lib/Epub/Epub.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Epub/Epub.cpp b/lib/Epub/Epub.cpp index 9542745a..11ddf0bf 100644 --- a/lib/Epub/Epub.cpp +++ b/lib/Epub/Epub.cpp @@ -471,7 +471,7 @@ bool Epub::generateThumbBmp(int width, int height) const { } // Use smaller target size for Continue Reading card (half of screen: 240x400) // Generate 1-bit BMP for fast home screen rendering (no gray passes needed) - const bool success = JpegToBmpConverter::jpegFileTo1BitBmpStreamWithSize(coverJpg, thumbBmp, width, height); + const bool success = JpegToBmpConverter::jpegFileToBmpStreamWithSize(coverJpg, thumbBmp, width, height); coverJpg.close(); thumbBmp.close(); SdMan.remove(coverJpgTempPath.c_str());