diff options
| -rw-r--r-- | HISTORY | 3 | ||||
| -rw-r--r-- | vdr_player.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -355,3 +355,6 @@ XXXXXXXXXX: Version 0.0.8-ALPHA - rename background mode to image mode which is more appropriate since the last changes. Since this also changes the name under which the value is stored in the setup file, you will lose your old value after updating. + +2008-xx-xx Version 0.2.2-BETA +- when showing covers as bitmaps, honour the image show duration from setup diff --git a/vdr_player.c b/vdr_player.c index 5945597..fcb481d 100644 --- a/vdr_player.c +++ b/vdr_player.c @@ -1429,7 +1429,7 @@ mgPlayerControl::CheckImage() { return; long elapsed=time(0)-m_imageshowtime; if (elapsed >= the_setup.ImageShowDuration - || (m_current_image.size()==0 && elapsed>1)) { + || (m_current_imagesource.size()==0 && elapsed>1)) { // all n decoding steps m_current_image = m_img_provider->getImagePath(m_current_imagesource); // check for TFT display of image |
