diff options
author | louis <louis.braun@gmx.de> | 2014-10-13 17:39:14 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-10-13 17:39:14 +0200 |
commit | 2e4a9b86ed6491e85d7e032790172fe2433cc19c (patch) | |
tree | 85ca3e13b039714809b939a31a03cbc82401d9a0 | |
parent | 71aed6f5cf975ca0c30c2ef90a78e6c5987de355 (diff) | |
download | vdr-plugin-skindesigner-2e4a9b86ed6491e85d7e032790172fe2433cc19c.tar.gz vdr-plugin-skindesigner-2e4a9b86ed6491e85d7e032790172fe2433cc19c.tar.bz2 |
fixed a bug loading separatorlogos
-rw-r--r-- | libcore/imagecache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcore/imagecache.c b/libcore/imagecache.c index c32c4e6..101c8b8 100644 --- a/libcore/imagecache.c +++ b/libcore/imagecache.c @@ -154,7 +154,7 @@ bool cImageCache::LogoExists(string channelID) { } bool cImageCache::SeparatorLogoExists(string name) { - string separatorPath = *cString::sprintf("%s%s/logos/separatorlogos/", *config.skinPath, Setup.OSDTheme); + string separatorPath = *cString::sprintf("%sseparatorlogos/", logoPath.c_str()); string nameLower = StrToLowerCase(name.c_str()); string logoExt = *config.logoExtension; bool logoExists = FileExists(separatorPath, nameLower, logoExt); |