From 81dc49adf41a27b464fbd1eb580bad72ab9cfec5 Mon Sep 17 00:00:00 2001 From: Eirik Stanghelle Morland Date: Sun, 9 Mar 2025 08:29:05 +0100 Subject: [PATCH] Fix simulator LCD handling --- watch-library/simulator/watch/watch_slcd.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/watch-library/simulator/watch/watch_slcd.c b/watch-library/simulator/watch/watch_slcd.c index c248dcff..e0a4dc32 100644 --- a/watch-library/simulator/watch/watch_slcd.c +++ b/watch-library/simulator/watch/watch_slcd.c @@ -37,6 +37,10 @@ static long blink_interval_id = - 1; static bool tick_state; static long tick_interval_id = -1; +watch_lcd_type_t watch_get_lcd_type(void) { + return WATCH_LCD_TYPE_CLASSIC; +} + void watch_enable_display(void) { watch_clear_display(); }