mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Merge pull request #7600 from spycrab/resource_pack
Implement resource packs
This commit is contained in:
@ -208,6 +208,9 @@ void MenuBar::AddToolsMenu()
|
||||
m_show_cheat_manager =
|
||||
tools_menu->addAction(tr("&Cheats Manager"), this, [this] { emit ShowCheatsManager(); });
|
||||
|
||||
tools_menu->addAction(tr("&Resource Pack Manager"), this,
|
||||
[this] { emit ShowResourcePackManager(); });
|
||||
|
||||
connect(&Settings::Instance(), &Settings::EnableCheatsChanged, [this](bool enabled) {
|
||||
m_show_cheat_manager->setEnabled(Core::GetState() != Core::State::Uninitialized && enabled);
|
||||
});
|
||||
|
Reference in New Issue
Block a user