Fixed type from bool to uint8

This commit is contained in:
Jonas Diemer 2025-12-15 12:57:02 +01:00
parent c3db4c0503
commit 064b355a7c

View File

@ -1,4 +1,5 @@
#pragma once
#include <cstdint>
#include <iosfwd>
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;