diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | vdr.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -6973,3 +6973,4 @@ Video Disk Recorder Revision History handled for 10 seconds. - Added some missing member initializations in cBitmap. - Improved displaying the play mode in the ST:TNG skin. +- Made the ST:TNG skin the default in case the user selected skin is not available. @@ -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(); |