diff options
-rw-r--r-- | menu_whatson.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menu_whatson.c b/menu_whatson.c index 8b393b5..5f44ee9 100644 --- a/menu_whatson.c +++ b/menu_whatson.c @@ -173,7 +173,7 @@ bool cMenuMyScheduleItem::Update(bool Force) else { t[0] = event && hasMatch ? (timerMatch == tmFull) ? ((timer && timer->Recording())?'R':'T') : 't' : ' '; - v[0] = event && event->Vps() && (event->Vps() - event->StartTime()) ? 'V' : 'v'; + v[0] = event && event->Vps() && (event->Vps() - event->StartTime()) ? 'V' : ' '; r[0] = event && event->IsRunning() ? '*' : ' '; } |