From 064b355a7c64776c6c3c99bdaeadc93b1466b80e Mon Sep 17 00:00:00 2001 From: Jonas Diemer Date: Mon, 15 Dec 2025 12:57:02 +0100 Subject: [PATCH] Fixed type from bool to uint8 --- src/CrossPointSettings.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/CrossPointSettings.h b/src/CrossPointSettings.h index 9b8747d..43aba9f 100644 --- a/src/CrossPointSettings.h +++ b/src/CrossPointSettings.h @@ -1,4 +1,5 @@ #pragma once +#include #include class CrossPointSettings { @@ -15,10 +16,10 @@ class CrossPointSettings { CrossPointSettings& operator=(const CrossPointSettings&) = delete; // Sleep screen settings - bool whiteSleepScreen = false; + uint8_t whiteSleepScreen = 0; // Text rendering settings - bool extraParagraphSpacing = true; + uint8_t extraParagraphSpacing = 1; ~CrossPointSettings() = default;