From ea0a85406569bc284da4e830f4206b0e8764006c Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Thu, 17 May 2012 12:08:05 -0500 Subject: [PATCH] [LoadingWindow_Gtk] Actually resolve the path to the Splash file. [djpohly] --- Docs/Changelog_sm5.txt | 4 ++++ Docs/credits.txt | 3 +++ src/arch/LoadingWindow/LoadingWindow_Gtk.cpp | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Docs/Changelog_sm5.txt b/Docs/Changelog_sm5.txt index 295f47fd0e..c3e1f6ea13 100644 --- a/Docs/Changelog_sm5.txt +++ b/Docs/Changelog_sm5.txt @@ -4,6 +4,10 @@ The StepMania 5 Changelog covers all post-sm-ssc changes. For a list of changes from StepMania 4 alpha 5 to sm-ssc v1.2.5, see Changelog_sm-ssc.txt. ________________________________________________________________________________ +2012/05/17 +---------- +* [LoadingWindow_Gtk] Actually resolve the path to the Splash file. [djpohly] + 2012/05/16 ---------- * [ScreenWithMenuElements] Added DelayMusicSeconds metric. [AJ] diff --git a/Docs/credits.txt b/Docs/credits.txt index e56c656a5b..d83939c271 100644 --- a/Docs/credits.txt +++ b/Docs/credits.txt @@ -141,6 +141,9 @@ Deamon007 cvpcs * Updated ffmpeg support to v0.10 +djpohly + * Various patches/fixes + ==the beta testers== [SSC Beta Testing Team] KeithD diff --git a/src/arch/LoadingWindow/LoadingWindow_Gtk.cpp b/src/arch/LoadingWindow/LoadingWindow_Gtk.cpp index 0fbb07199c..7e1d3187d9 100644 --- a/src/arch/LoadingWindow/LoadingWindow_Gtk.cpp +++ b/src/arch/LoadingWindow/LoadingWindow_Gtk.cpp @@ -92,7 +92,7 @@ void LoadingWindow_Gtk::SetIcon( const RageSurface *pIcon ) void LoadingWindow_Gtk::SetSplash( const RString str ) { - Module_SetSplash( str ); + Module_SetSplash( FILEMAN->ResolvePath(str) ); } void LoadingWindow_Gtk::SetProgress( const int progress )