Qt: Implement GameCube memory manager

This commit is contained in:
spycrab 2018-01-25 19:54:50 +01:00
commit 21db1e9504
8 changed files with 569 additions and 0 deletions

View file

@ -109,6 +109,11 @@ void MenuBar::AddToolsMenu()
{
QMenu* tools_menu = addMenu(tr("&Tools"));
AddAction(tools_menu, tr("&Memory Card Manager (GC)"), this,
[this] { emit ShowMemcardManager(); });
tools_menu->addSeparator();
AddAction(tools_menu, tr("Import Wii Save..."), this, &MenuBar::ImportWiiSave);
AddAction(tools_menu, tr("Export All Wii Saves"), this, &MenuBar::ExportWiiSaves);