Skip to content

Commit

Permalink
update for mips vuultimo (not yet ready)
Browse files Browse the repository at this point in the history
  • Loading branch information
BPanther committed Aug 8, 2023
1 parent aeb1f47 commit b6e1ae8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/driver/simple_display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit b6e1ae8

Please sign in to comment.