Add homebrew_on_menu to the list of allowed plugins

This commit is contained in:
Maschell 2024-08-04 18:02:20 +02:00
parent ab70f6f7c1
commit 3cf0f5d9fd

View File

@ -60,7 +60,8 @@ std::vector<PluginLoadWrapper> 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);