aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2023-12-17 17:35:36 +0100
committerJF <JF002@users.noreply.github.com>2023-12-21 20:49:22 +0100
commit088082d32db483ac5326bed09d5d47847fb5bf9b (patch)
tree7103e49f770dda0ad87aa8e0024560a9f9461e5c /src
parent39bc166e549e8ccae75468aa2dd3613d51f54e27 (diff)
Watch face selection at build time
Do not assign specific values to the fields of the enum WatchFace.
Diffstat (limited to 'src')
-rw-r--r--src/displayapp/Apps.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/displayapp/Apps.h b/src/displayapp/Apps.h
index 097b530e..ebd8bf78 100644
--- a/src/displayapp/Apps.h
+++ b/src/displayapp/Apps.h
@@ -44,12 +44,12 @@ namespace Pinetime {
};
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>