fix moonlight crashing on Linux by disabling buggy icon set code

This commit is contained in:
AJ Kelly
2011-08-23 14:50:25 -05:00
parent ae80638a7b
commit 38da01759d
3 changed files with 9 additions and 7 deletions
@@ -87,14 +87,14 @@ extern "C" void SetIcon( const RageSurface *pSrcImg )
gtk_window_set_icon( GTK_WINDOW(window), pIcon );
gtk_main_iteration_do(FALSE);
}
/*
extern "C" void SetSplash( const char *s )
{
splash = gtk_image_new_from_file(s);
gtk_widget_show(splash);
gtk_main_iteration_do(FALSE);
}
*/
extern "C" void SetProgress( int progress, int totalWork )
{
gdouble fraction = ( totalWork > 0 ? progress / (gdouble)totalWork : 0 );