From b6e1ae81feb19ad8e876d12fb31a7e1b22e71ad1 Mon Sep 17 00:00:00 2001 From: BPanther Date: Tue, 8 Aug 2023 02:04:40 +0200 Subject: [PATCH] update for mips vuultimo (not yet ready) --- src/driver/simple_display.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/driver/simple_display.cpp b/src/driver/simple_display.cpp index b88114667..5841fc688 100644 --- a/src/driver/simple_display.cpp +++ b/src/driver/simple_display.cpp @@ -1004,6 +1004,9 @@ void CLCD::ShowIcon(fp_icon i, bool on) void CLCD::ShowText(const char *str, bool update_timestamp) { +#if BOXMODEL_VUULTIMO + return; +#else int fd = dev_open(); int len = strlen(str); if (fd < 0) @@ -1019,6 +1022,7 @@ void CLCD::ShowText(const char *str, bool update_timestamp) if (len > g_info.hw_caps->display_xres) last_display += (len - g_info.hw_caps->display_xres) / 5; } +#endif } void CLCD::setEPGTitle(const std::string)