CLOCK_FACE_24H_ONLY hides the preference to change the setting and defaults the mode to 24Hr mode

This commit is contained in:
David Volovskiy
2024-07-08 18:32:41 -04:00
parent 226cda748c
commit b923d50652
3 changed files with 7 additions and 6 deletions

View File

@@ -42,10 +42,6 @@
#define CLOCK_FACE_LOW_BATTERY_VOLTAGE_THRESHOLD 2200
#endif
#ifndef CLOCK_FACE_24H_ONLY
#define CLOCK_FACE_24H_ONLY 0
#endif
typedef struct {
struct {
watch_date_time previous;
@@ -57,7 +53,6 @@ typedef struct {
} clock_state_t;
static bool clock_is_in_24h_mode(movement_settings_t *settings) {
if (CLOCK_FACE_24H_ONLY) { return true; }
return settings->bit.clock_mode_24h;
}