DolphinQt: Remove "Experimental" from "Export Wii Save"

It's pretty well tested at this point.
This commit is contained in:
JosJuice 2019-11-27 17:23:58 +01:00
parent 70ee5234ba
commit 9938585702
1 changed files with 2 additions and 2 deletions

View File

@ -282,7 +282,7 @@ void GameList::ShowContextMenu(const QPoint&)
if (wii_saves)
{
menu->addAction(tr("Export Wii Saves (Experimental)"), this, &GameList::ExportWiiSave);
menu->addAction(tr("Export Wii Saves"), this, &GameList::ExportWiiSave);
menu->addSeparator();
}
@ -358,7 +358,7 @@ void GameList::ShowContextMenu(const QPoint&)
if (platform == DiscIO::Platform::WiiWAD || platform == DiscIO::Platform::WiiDisc)
{
menu->addAction(tr("Open Wii &Save Folder"), this, &GameList::OpenWiiSaveFolder);
menu->addAction(tr("Export Wii Save (Experimental)"), this, &GameList::ExportWiiSave);
menu->addAction(tr("Export Wii Save"), this, &GameList::ExportWiiSave);
menu->addSeparator();
}