From bdcd6df4591a07881043d6a93adf44832bd6d2cc Mon Sep 17 00:00:00 2001 From: Michael M Date: Tue, 18 Jul 2017 15:05:50 -0700 Subject: [PATCH] InterfaceConfigPane: remove unneeded comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It notes that using "no" for Norwegian is not allowed by wxWidgets, but "nb" is the correct code for Norwegian Bokmål anyways. --- Source/Core/DolphinWX/Config/InterfaceConfigPane.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Source/Core/DolphinWX/Config/InterfaceConfigPane.cpp b/Source/Core/DolphinWX/Config/InterfaceConfigPane.cpp index cef2b2a995..a455e9d013 100644 --- a/Source/Core/DolphinWX/Config/InterfaceConfigPane.cpp +++ b/Source/Core/DolphinWX/Config/InterfaceConfigPane.cpp @@ -36,11 +36,10 @@ static const std::array language_ids{{ "", - "ms", "ca", "cs", "da", "de", "en", "es", "fr", "hr", "it", "hu", "nl", - "nb", // wxWidgets won't accept "no" - "pl", "pt", "pt_BR", "ro", "sr", "sv", "tr", + "ms", "ca", "cs", "da", "de", "en", "es", "fr", "hr", "it", + "hu", "nl", "nb", "pl", "pt", "pt_BR", "ro", "sr", "sv", "tr", - "el", "ru", "ar", "fa", "ko", "ja", "zh_CN", "zh_TW", + "el", "ru", "ar", "fa", "ko", "ja", "zh_CN", "zh_TW", }}; InterfaceConfigPane::InterfaceConfigPane(wxWindow* parent, wxWindowID id) : wxPanel(parent, id)