From da18f7f8acc59426fdb60bd259ae773dd6efe38b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Fri, 22 Jul 2016 17:41:33 +0200 Subject: [PATCH] Netplay: Fix a typo in the MD5 check dropdown MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "Curent game" → "Current game" --- Source/Core/DolphinWX/NetPlay/NetWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/NetPlay/NetWindow.cpp b/Source/Core/DolphinWX/NetPlay/NetWindow.cpp index ee81bb4e91..bbd5308e03 100644 --- a/Source/Core/DolphinWX/NetPlay/NetWindow.cpp +++ b/Source/Core/DolphinWX/NetPlay/NetWindow.cpp @@ -140,7 +140,7 @@ NetPlayDialog::NetPlayDialog(wxWindow* const parent, const CGameListCtrl* const m_MD5_choice = new wxChoice(panel, wxID_ANY, wxDefaultPosition, wxSize(150, -1)); m_MD5_choice->Bind(wxEVT_CHOICE, &NetPlayDialog::OnMD5ComputeRequested, this); m_MD5_choice->Append(_("MD5 check...")); - m_MD5_choice->Append(_("Curent game")); + m_MD5_choice->Append(_("Current game")); m_MD5_choice->Append(_("Other game")); m_MD5_choice->Append(_("SD card")); m_MD5_choice->SetSelection(0);