diff options
author | louis <louis.braun@gmx.de> | 2015-03-13 18:07:33 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-03-13 18:07:33 +0100 |
commit | d5a91f36dc6387e51e74982e8087be7b04d585a2 (patch) | |
tree | bec1f8d829a9b913c40d13af061d4e512c8ec112 /libcore | |
parent | 229b1274a5c7bd8bf4d1b101dab83094ff3f9c06 (diff) | |
download | vdr-plugin-skindesigner-d5a91f36dc6387e51e74982e8087be7b04d585a2.tar.gz vdr-plugin-skindesigner-d5a91f36dc6387e51e74982e8087be7b04d585a2.tar.bz2 |
fixed FadeOut bug
Diffstat (limited to 'libcore')
-rw-r--r-- | libcore/pixmapcontainer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcore/pixmapcontainer.c b/libcore/pixmapcontainer.c index 3e5e60a..94fe3eb 100644 --- a/libcore/pixmapcontainer.c +++ b/libcore/pixmapcontainer.c @@ -358,7 +358,7 @@ void cPixmapContainer::FadeOut(void) { } DoFlush(); int Delta = cTimeMs::Now() - Now; - if (Running() && (Delta < FadeFrameTime)) + if (Delta < FadeFrameTime) cCondWait::SleepMs(FadeFrameTime - Delta); if ((int)(Now - Start) > fadeTime) break; |