InfiniTime.git

commit 088082d32db483ac5326bed09d5d47847fb5bf9b

Author: Jean-François Milants <jf@codingfield.com>

Watch face selection at build time

Do not assign specific values to the fields of the enum WatchFace.

 src/displayapp/Apps.h | 12 ++++++------


diff --git a/src/displayapp/Apps.h b/src/displayapp/Apps.h
index 097b530ebb0bef9d8caef44eca1faabcf149c46d..ebd8bf78d49bfa699079fcb20218f4d9b9d60abe 100644
--- a/src/displayapp/Apps.h
+++ b/src/displayapp/Apps.h
@@ -44,12 +44,12 @@       Weather
     };
 
     enum class WatchFace : uint8_t {
-      Digital = 0,
-      Analog = 1,
-      PineTimeStyle = 2,
-      Terminal = 3,
-      Infineat = 4,
-      CasioStyleG7710 = 5,
+      Digital,
+      Analog,
+      PineTimeStyle,
+      Terminal,
+      Infineat,
+      CasioStyleG7710,
     };
 
     template <Apps>