From b62b3667cbf3d7ac94838470e4bc8283f8f91182 Mon Sep 17 00:00:00 2001 From: Blake-Madden Date: Wed, 2 Aug 2023 11:32:38 -0400 Subject: [PATCH] Remove bogus assert. --- src/util/resource_manager.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/util/resource_manager.cpp b/src/util/resource_manager.cpp index 479fe70d..0b8a6287 100644 --- a/src/util/resource_manager.cpp +++ b/src/util/resource_manager.cpp @@ -106,9 +106,6 @@ wxBitmapBundle ResourceManager::GetSVG(const wxString& path) } else { - assert(wxBitmapBundle::FromSVGFile(path, wxSize(16, 16)).IsOk() && - L"Failed to load SVG icon!"); - wxVector bmps; bmps.push_back(m_zipCatalog.ReadSVG(path, wxSize(16, 16))); bmps.push_back(m_zipCatalog.ReadSVG(path, wxSize(32, 32)));