diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-08-25 23:00:55 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-08-25 23:00:55 +0000 |
commit | 311cd09ea2300d051d3aabe85acdddedc87bcc36 (patch) | |
tree | 9b6bf1e50e1a076611c352b095217962e8da36e5 /Gui | |
parent | c86440962c695f8f2ac410ab3621be74bc132077 (diff) |
commented
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1697 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r-- | Gui/app.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -107,18 +107,18 @@ void appInit( int argc,char* argv[], char *envp[] ) if ( ( skinMPlayerDir=(char *)calloc( 1,strlen( appMPlayerDir ) + 5 ) ) != NULL ) { strcpy( skinMPlayerDir,appMPlayerDir ); strcat( skinMPlayerDir,"/Skin" ); } - initDebug(NULL); + initDebug(NULL); // write messages to stderr - cfgDefaults(); - cfgRead(); - if ( !strcmp( cfgAppName,"movieplayer" ) ) - { + cfgDefaults(); // set skin to "default" + cfgRead(); // empty function - NOP +// if ( !strcmp( cfgAppName,"movieplayer" ) ) +// { appMPlayer.sub.x=-1; appMPlayer.sub.y=-1; appMPlayer.sub.width=512; appMPlayer.sub.height=256; switch ( skinRead( cfgSkin ) ) { case -1: dbprintf( 0,"[app] skin configfile not found.\n" ); exit( 0 ); case -2: dbprintf( 0,"[app] skin configfile read error.\n" ); exit( 0 ); } - mplInit( argc,argv,envp ); - } + mplInit( argc,argv,envp ); // does gtk & ws initialization, create windows +// } } |