From abc0458d4f90dc45407e53d406ef6f4e7ef133fe Mon Sep 17 00:00:00 2001 From: kojin Date: Thu, 12 Aug 2021 23:25:03 -0700 Subject: [PATCH] GS: remove image header from wx settings dialog --- pcsx2/GS/Window/GSwxDialog.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pcsx2/GS/Window/GSwxDialog.cpp b/pcsx2/GS/Window/GSwxDialog.cpp index 3db17db229..24e45c2f50 100644 --- a/pcsx2/GS/Window/GSwxDialog.cpp +++ b/pcsx2/GS/Window/GSwxDialog.cpp @@ -544,15 +544,6 @@ Dialog::Dialog() auto* padding = new wxBoxSizer(wxVERTICAL); m_top_box = new wxBoxSizer(wxVERTICAL); - // Right now, I'm hardcoding the location of the picture. - wxString fileLocation = wxStandardPaths::Get().GetExecutablePath(); - fileLocation = wxFileName(fileLocation).GetPath() + L"/plugins/logo-ogl.bmp"; - if (wxFileName(fileLocation).Exists()) - { - wxBitmap logo(fileLocation, wxBITMAP_TYPE_BMP); - m_top_box->Add(new wxStaticBitmap(this, wxID_ANY, logo), wxSizerFlags().Centre()); - } - auto* top_grid = new wxFlexGridSizer(2, 5, 5); top_grid->SetFlexibleDirection(wxHORIZONTAL);