From: Carl Hetherington Date: Sun, 27 Sep 2020 18:07:06 +0000 (+0200) Subject: Use bitmap_path() method to find the splash screen image. X-Git-Tag: v2.15.104~76 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=522298ca8eef0fd97045cda091f9c6576547f749 Use bitmap_path() method to find the splash screen image. --- diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc index e90d2f848..758d57a80 100644 --- a/src/wx/wx_util.cc +++ b/src/wx/wx_util.cc @@ -473,8 +473,7 @@ maybe_show_splash () wxSplashScreen* splash = 0; try { wxBitmap bitmap; - boost::filesystem::path p = resources_path() / "splash.png"; - if (bitmap.LoadFile (std_to_wx (p.string ()), wxBITMAP_TYPE_PNG)) { + if (bitmap.LoadFile(bitmap_path("splash"), wxBITMAP_TYPE_PNG)) { splash = new wxSplashScreen (bitmap, wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_NO_TIMEOUT, 0, 0, -1); wxYield (); } @@ -578,7 +577,7 @@ bitmap_path (string name) boost::filesystem::path base; #ifdef DCPOMATIC_DEBUG - /* Hack to allow OS X to find icons when running from the source tree */ + /* Hack to allow Linux and OS X to find icons when running from the source tree */ char* path = getenv ("DCPOMATIC_GRAPHICS"); if (path) { base = path;