From 9938585702f49a2a21e4733abea9930ea337408f Mon Sep 17 00:00:00 2001
From: JosJuice <josjuice@gmail.com>
Date: Wed, 27 Nov 2019 17:23:58 +0100
Subject: [PATCH] DolphinQt: Remove "Experimental" from "Export Wii Save"

It's pretty well tested at this point.
---
 Source/Core/DolphinQt/GameList/GameList.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp
index ae6266e99e..a9f8d8e470 100644
--- a/Source/Core/DolphinQt/GameList/GameList.cpp
+++ b/Source/Core/DolphinQt/GameList/GameList.cpp
@@ -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();
     }