From 138b9c36f7148680dd46fe71ec1aeb6b9013bb27 Mon Sep 17 00:00:00 2001 From: Michael Meeks Date: Mon, 21 Mar 2011 17:42:51 +0000 Subject: misc fixes, and un-conditionally enable the splash reporting component Lots of re-work here; un-conditionally use the splash component to do more intelligent fast starting. Throw up the splash screen before we start doing 'pagein' work (to get better progress / launch feedback), and hide javaldx too. --- desktop/unx/source/splashx.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'desktop/unx/source/splashx.c') diff --git a/desktop/unx/source/splashx.c b/desktop/unx/source/splashx.c index 9cc6832399b5..9e0d237decc6 100755 --- a/desktop/unx/source/splashx.c +++ b/desktop/unx/source/splashx.c @@ -629,13 +629,16 @@ void splash_close_window() int splash_load_bmp( const char *filename ) { + (void)filename; return 1; } void splash_setup( int barc[3], int framec[3], int posx, int posy, int w, int h ) { + (void)barc; (void)framec; (void)posx; (void)posy; (void)w; (void)h; } int splash_create_window( int argc, char** argv ) { + (void)argc; (void)argv; return 1; } void splash_close_window() @@ -643,6 +646,7 @@ void splash_close_window() } void splash_draw_progress( int progress ) { + (void)progress; } #endif // ENABLE_QUICKSTART_LIBPNG -- cgit