1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Bugfix in current/next display

This commit is contained in:
Klaus Schmidinger 2000-09-10 15:00:00 +02:00
parent bec3064590
commit 3d50a5f1e3

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: interface.c 1.14 2000/09/10 11:22:21 kls Exp $
* $Id: interface.c 1.15 2000/09/10 15:00:00 kls Exp $
*/
#include "interface.h"
@ -357,9 +357,10 @@ eKeys cInterface::DisplayChannel(int Number, const char *Name, bool WithInfo)
snprintf(buffer, BufSize, "%.*s", w, NextTitle); Write(t, l, buffer, clrCyan, clrBackground);
l++;
}
if (*NextSubtitle)
if (*NextSubtitle) {
snprintf(buffer, BufSize, "%.*s", w, NextSubtitle); Write(t, l, buffer, clrCyan, clrBackground);
}
}
eKeys Key = Wait(5, true);
if (Key == kOk)
GetKey();