X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Fwx_util.cc;h=e90d2f8481d49b3f731a05af42a7e021bebf0ff1;hb=e3c78ffdb5e562841e86e6f59a20494159c44de7;hp=46b122a8a6c82dca3231e2740553f8ce8c7ed6c7;hpb=2da4caba7871455c097c0ed940dd6f2332dbda5d;p=dcpomatic.git diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc index 46b122a8a..e90d2f848 100644 --- a/src/wx/wx_util.cc +++ b/src/wx/wx_util.cc @@ -473,7 +473,7 @@ maybe_show_splash () wxSplashScreen* splash = 0; try { wxBitmap bitmap; - boost::filesystem::path p = shared_path () / "splash.png"; + boost::filesystem::path p = resources_path() / "splash.png"; if (bitmap.LoadFile (std_to_wx (p.string ()), wxBITMAP_TYPE_PNG)) { splash = new wxSplashScreen (bitmap, wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_NO_TIMEOUT, 0, 0, -1); wxYield (); @@ -583,10 +583,10 @@ bitmap_path (string name) if (path) { base = path; } else { - base = shared_path(); + base = resources_path(); } #else - base = shared_path(); + base = resources_path(); #endif boost::filesystem::path p = base / String::compose("%1.png", name);