diff options
author | phintuka <phintuka> | 2006-11-05 16:37:10 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-11-05 16:37:10 +0000 |
commit | 95576ee0aaf72b6fcb7aa841bef1f1906bd06543 (patch) | |
tree | 9712108b9c4ace954c5b3e61a8ccead442165fce | |
parent | c6cc8a17f1ea80774212222f2c933b826c6d6e67 (diff) | |
download | xineliboutput-95576ee0aaf72b6fcb7aa841bef1f1906bd06543.tar.gz xineliboutput-95576ee0aaf72b6fcb7aa841bef1f1906bd06543.tar.bz2 |
cFileListItem: added 'D' (DVD marker) for DVD image files
-rw-r--r-- | menuitems.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/menuitems.c b/menuitems.c index f21652d4..c11032af 100644 --- a/menuitems.c +++ b/menuitems.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: menuitems.c,v 1.3 2006-09-19 08:24:09 phintuka Exp $ + * $Id: menuitems.c,v 1.4 2006-11-05 16:37:10 phintuka Exp $ * */ @@ -103,7 +103,7 @@ void cFileListItem::Set(void) else asprintf(&txt, "\t\t[%s] ", m_Name); // text2skin requires space at end of string to display item correctly ... } else { - asprintf(&txt, "%c\t%c\t%s", m_HasResume?' ':'*', m_HasSubs ? 'S' : ' ', m_Name); + asprintf(&txt, "%c\t%c\t%s", m_HasResume ? ' ' : '*', m_HasSubs ? 'S' : m_IsDvd ? 'D' : ' ', m_Name); if(NULL != (pt = strrchr(txt,'.'))) *pt = 0; } |