Commit cd1ae50f authored by Christophe Mutricy's avatar Christophe Mutricy

score is cached, so it's not a good idea to have it depens of the environement

parent 14f7fe99
......@@ -115,11 +115,7 @@ static char *psz_playlist_views[] = { N_("Normal" ), N_("Embedded" ) ,
N_("Both") };
vlc_module_begin();
#ifdef WIN32
int i_score = 150;
#else
int i_score = getenv( "DISPLAY" ) == NULL ? 15 : 150;
#endif
set_shortname( (char*) "wxWidgets" );
set_description( (char *) _("wxWidgets interface module") );
set_category( CAT_INTERFACE );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment