Watch face selection at build time

Do not assign specific values to the fields of the enum WatchFace.
main
Jean-François Milants 2023-12-17 17:35:36 +07:00 committed by JF
parent 39bc166e54
commit 088082d32d
1 changed files with 6 additions and 6 deletions

@ -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>