mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2025-12-18 07:07:41 +03:00
Fixed type from bool to uint8
This commit is contained in:
parent
c3db4c0503
commit
064b355a7c
@ -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;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user