From e49198cef85f939f1a416291a6ea1ba0dabf5565 Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Tue, 11 Feb 2020 00:08:38 +0100 Subject: [PATCH] Don't bypass fbdepth when starting KOReader @ 8bpp (#5841) * [Kobo/reMarkable] Don't skip fbdepth when launching KOReader @ 8bpp I'm not quite sure how that can happen unless you really want to, but apparently it did on @Frenzie's H2O ;p --- platform/kobo/koreader.sh | 1 + platform/remarkable/koreader.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/platform/kobo/koreader.sh b/platform/kobo/koreader.sh index ced0fb976..11f979513 100755 --- a/platform/kobo/koreader.sh +++ b/platform/kobo/koreader.sh @@ -154,6 +154,7 @@ ORIG_FB_BPP="$(./fbdepth -g)" echo "Original fb bitdepth is set @ ${ORIG_FB_BPP}bpp" >>crash.log 2>&1 # Sanity check... case "${ORIG_FB_BPP}" in + 8) ;; 16) ;; 32) ;; *) diff --git a/platform/remarkable/koreader.sh b/platform/remarkable/koreader.sh index 24e6915e1..fcb79746c 100755 --- a/platform/remarkable/koreader.sh +++ b/platform/remarkable/koreader.sh @@ -85,6 +85,7 @@ echo "Original fb settings: bitdepth = ${ORIG_FB_BPP}, rotation = ${ORIG_FB_ROTA # Sanity check... case "${ORIG_FB_BPP}" in + 8) ;; 16) ;; 32) ;; *)