From bed54e03739c2c94f465d6cd5881192eb5fb2e56 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 4 Aug 2024 18:02:20 +0200 Subject: [PATCH] Add homebrew_on_menu to the list of allowed plugins --- source/plugin/PluginDataFactory.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/plugin/PluginDataFactory.cpp b/source/plugin/PluginDataFactory.cpp index 134433c..6be82be 100644 --- a/source/plugin/PluginDataFactory.cpp +++ b/source/plugin/PluginDataFactory.cpp @@ -60,7 +60,8 @@ std::vector PluginDataFactory::loadDir(std::string_view path) full_file_path.ends_with("drc_region_free.wps") || full_file_path.ends_with("regionfree.wps") || full_file_path.ends_with("ftpiiu.wps") || - full_file_path.ends_with("wiiload.wps")) { + full_file_path.ends_with("wiiload.wps") || + full_file_path.ends_with("homebrew_on_menu.wps")) { shouldBeLoadedAndLinked = true; } result.emplace_back(std::move(pluginData), shouldBeLoadedAndLinked);