diff options
Diffstat (limited to 'menu_searchresults.c')
-rw-r--r-- | menu_searchresults.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/menu_searchresults.c b/menu_searchresults.c index d0b7b90..10ea447 100644 --- a/menu_searchresults.c +++ b/menu_searchresults.c @@ -91,9 +91,12 @@ bool cMenuSearchResultsItem::Update(bool Force) } else { +#if defined(__GNUC__) && __GNUC__ < 3 && __GNUC_MINOR__ < 96 +#else sprintf(t, "%s", (event && hasMatch ? (timerMatch == tmFull) ? ((timer && timer->Recording())?ICON_REC_UTF8:ICON_CLOCK_UTF8) : ICON_CLOCK_HALF_UTF8 : " ")); sprintf(v, "%s", event && event->Vps() && (event->Vps() - event->StartTime()) ? ICON_VPS_UTF8 : " "); sprintf(r, "%s", (event && event->IsRunning() ? ICON_RUNNING_UTF8 : " ")); +#endif } } else |