summaryrefslogtreecommitdiffstats
path: root/Gui/app.c
diff options
context:
space:
mode:
Diffstat (limited to 'Gui/app.c')
-rw-r--r--Gui/app.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gui/app.c b/Gui/app.c
index 023882ee19..557645defc 100644
--- a/Gui/app.c
+++ b/Gui/app.c
@@ -96,7 +96,7 @@ int appFindMessage( unsigned char * str )
return -1;
}
-void appInit( int argc,char* argv[], char *envp[] )
+void appInit( int argc,char* argv[], char *envp[], void* disp )
{
skinDirInHome=get_path("Skin");
skinMPlayerDir=DATADIR "/Skin";
@@ -124,6 +124,6 @@ void appInit( int argc,char* argv[], char *envp[] )
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 ); // does gtk & ws initialization, create windows
+ mplInit( argc,argv,envp,disp ); // does gtk & ws initialization, create windows
// }
}