From 088082d32db483ac5326bed09d5d47847fb5bf9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Milants?= Date: Sun, 17 Dec 2023 17:35:36 +0100 Subject: [PATCH] Watch face selection at build time Do not assign specific values to the fields of the enum WatchFace. --- src/displayapp/Apps.h | 12 ++++++------ 1 file 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