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 #pragma once
#include <cstdint>
#include <iosfwd> #include <iosfwd>
class CrossPointSettings { class CrossPointSettings {
@ -15,10 +16,10 @@ class CrossPointSettings {
CrossPointSettings& operator=(const CrossPointSettings&) = delete; CrossPointSettings& operator=(const CrossPointSettings&) = delete;
// Sleep screen settings // Sleep screen settings
bool whiteSleepScreen = false; uint8_t whiteSleepScreen = 0;
// Text rendering settings // Text rendering settings
bool extraParagraphSpacing = true; uint8_t extraParagraphSpacing = 1;
~CrossPointSettings() = default; ~CrossPointSettings() = default;