#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
watch_display_string(string, 0);
#pragma GCC diagnostic pop
+ #ifdef USE_CUSTOM_LCD
+ watch_display_character(' ', 10);
+ #endif
}
}
case WATCH_POSITION_HOURS:
case WATCH_POSITION_MINUTES:
case WATCH_POSITION_SECONDS:
+ case WATCH_POSITION_FULL:
watch_display_text(location, string);
break;
- case WATCH_POSITION_FULL:
- // This is deprecated, but we use it for the legacy behavior.
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
- watch_display_string(string, 0);
- #pragma GCC diagnostic pop
}
#else
(void)string;