From bde89394f366205fb8d7e141b1668cb835b47303 Mon Sep 17 00:00:00 2001 From: apoorv569 Date: Sat, 20 Mar 2021 20:41:29 +0530 Subject: [PATCH] Fix path for logo and icon. --- src/App.cpp | 2 +- src/MainFrame.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.cpp b/src/App.cpp index 4e1ecab..aa1a61a 100644 --- a/src/App.cpp +++ b/src/App.cpp @@ -26,7 +26,7 @@ bool App::OnInit() wxBitmap bitmap; wxSplashScreen* splash; - if (bitmap.LoadFile("../assets/Logo/logo-hive_768x432.png", wxBITMAP_TYPE_PNG)) + if (bitmap.LoadFile("../assets/logo/logo-hive_768x432.png", wxBITMAP_TYPE_PNG)) { splash = new wxSplashScreen(bitmap, wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_TIMEOUT, diff --git a/src/MainFrame.cpp b/src/MainFrame.cpp index 25c77eb..e0211e7 100644 --- a/src/MainFrame.cpp +++ b/src/MainFrame.cpp @@ -17,7 +17,7 @@ MainFrame::MainFrame(): wxFrame(NULL, wxID_ANY, "Sample Hive", wxDefaultPosition this->SetSize(width, height); this->Center(wxBOTH); this->CenterOnScreen(wxBOTH); - this->SetIcon(wxIcon("../assets/Icons/icon-hive_24x24.png", wxICON_DEFAULT_TYPE, -1, -1)); + this->SetIcon(wxIcon("../assets/icons/icon-hive_24x24.png", wxICON_DEFAULT_TYPE, -1, -1)); m_Browser = new Browser(this); }