From e4c6493130858abcedc0c7ca80e3b59fdc51059f Mon Sep 17 00:00:00 2001 From: nakeee Date: Sun, 30 Nov 2008 15:13:33 +0000 Subject: [PATCH] dded wxT() git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1346 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp b/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp index 4f3d7fbeb8..58d2b8b906 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp @@ -123,11 +123,11 @@ void ConfigDialog::CreateGUIControls() m_ForceFiltering->SetValue(g_Config.bForceFiltering); wxStaticText *AnisoText = new wxStaticText(m_PageGeneral, ID_WMTEXT, wxT("Anisotropic filter:"), wxDefaultPosition, wxDefaultSize, 0); m_MaxAnisotropyCB = new wxChoice(m_PageGeneral, ID_MAXANISOTROPY, wxDefaultPosition, wxDefaultSize, arrayStringFor_MaxAnisotropyCB, 0, wxDefaultValidator); - m_MaxAnisotropyCB->Append("1x"); - m_MaxAnisotropyCB->Append("2x"); - m_MaxAnisotropyCB->Append("4x"); - m_MaxAnisotropyCB->Append("8x"); - m_MaxAnisotropyCB->Append("16x"); + m_MaxAnisotropyCB->Append(wxT("1x")); + m_MaxAnisotropyCB->Append(wxT("2x")); + m_MaxAnisotropyCB->Append(wxT("4x")); + m_MaxAnisotropyCB->Append(wxT("8x")); + m_MaxAnisotropyCB->Append(wxT("16x")); m_MaxAnisotropyCB->SetSelection(g_Config.iMaxAnisotropy - 1); wxStaticText *AAText = new wxStaticText(m_PageGeneral, ID_AATEXT, wxT("Anti-alias mode:"), wxDefaultPosition, wxDefaultSize, 0);