From 5b54d6df4ac3919d4924843a3947fb651fa01fb3 Mon Sep 17 00:00:00 2001 From: John Crawford Date: Thu, 19 Oct 2023 17:56:37 -0600 Subject: [PATCH] aod: fix InfiniSim build --- sim/components/brightness/BrightnessController.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/components/brightness/BrightnessController.h b/sim/components/brightness/BrightnessController.h index 0d7ac2f..faf339d 100644 --- a/sim/components/brightness/BrightnessController.h +++ b/sim/components/brightness/BrightnessController.h @@ -6,7 +6,7 @@ namespace Pinetime { namespace Controllers { class BrightnessController { public: - enum class Levels { Off, Low, Medium, High }; + enum class Levels { Off, Lowest, Low, Medium, High }; void Init(); void Set(Levels level);