added separator before 'onscreen' style of episode number
This commit is contained in:
parent
d23f60b031
commit
0dcbb359a5
1 changed files with 2 additions and 2 deletions
|
@ -1078,8 +1078,8 @@ size_t epg_episode_number_format
|
|||
if ( cfmt && num.e_cnt )
|
||||
i+= snprintf(&buf[i], len-i, cfmt, num.e_cnt);
|
||||
} else if ( num.text ) {
|
||||
strncpy(buf, num.text, len);
|
||||
i = strlen(buf);
|
||||
if (pre) i += snprintf(&buf[i], len-i, "%s", pre);
|
||||
i += snprintf(&buf[i], len-i, "%s", num.text);
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue