diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-05 10:46:26 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-05 10:46:26 +0100 |
commit | 90f57792286bcec1502625c0e275c5d573652c5e (patch) | |
tree | a822a9540eb4c7cb5e0f9152e17372f2ff84eea7 /vdr.c | |
parent | f1441cebf6e5b27731f7fca4835b9f49b6e2f329 (diff) | |
download | vdr-90f57792286bcec1502625c0e275c5d573652c5e.tar.gz vdr-90f57792286bcec1502625c0e275c5d573652c5e.tar.bz2 |
Made the ST:TNG skin the default in case the user selected skin is not available
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.tvdr.de * - * $Id: vdr.c 2.30 2012/02/27 10:59:55 kls Exp $ + * $Id: vdr.c 2.31 2012/03/05 10:44:33 kls Exp $ */ #include <getopt.h> @@ -677,8 +677,8 @@ int main(int argc, char *argv[]) // Default skins: - new cSkinClassic; new cSkinSTTNG; + new cSkinClassic; Skins.SetCurrent(Setup.OSDSkin); cThemes::Load(Skins.Current()->Name(), Setup.OSDTheme, Skins.Current()->Theme()); CurrentSkin = Skins.Current(); |